From 49c9c63bf5b9f1f05af4c9c2c1c0b8e0d40df9be Mon Sep 17 00:00:00 2001 From: Weng Xuetian Date: Fri, 17 Jun 2022 10:59:50 -0700 Subject: [PATCH] Fix the switch room direction Down should be next and Up should be Previous --- qml/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qml/main.qml b/qml/main.qml index c035f9619..bf133536a 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -313,10 +313,10 @@ Kirigami.ApplicationWindow { Connections { target: root.roomPage function onSwitchRoomUp() { - roomList.goToNextRoom(); + roomList.goToPreviousRoom(); } function onSwitchRoomDown() { - roomList.goToPreviousRoom(); + roomList.goToNextRoom(); } } }