Fix the switch room direction
Down should be next and Up should be Previous
This commit is contained in:
committed by
Tobias Fella
parent
90cee0f437
commit
49c9c63bf5
@@ -313,10 +313,10 @@ Kirigami.ApplicationWindow {
|
|||||||
Connections {
|
Connections {
|
||||||
target: root.roomPage
|
target: root.roomPage
|
||||||
function onSwitchRoomUp() {
|
function onSwitchRoomUp() {
|
||||||
roomList.goToNextRoom();
|
roomList.goToPreviousRoom();
|
||||||
}
|
}
|
||||||
function onSwitchRoomDown() {
|
function onSwitchRoomDown() {
|
||||||
roomList.goToPreviousRoom();
|
roomList.goToNextRoom();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user