From c17441cc252194cf6693a4c55ac1ae59ef479c8f Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sun, 22 Nov 2020 12:30:59 +0100 Subject: [PATCH] Fix handle visible on layers --- qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/main.qml b/qml/main.qml index ce39ffa04..4432769ee 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -99,7 +99,7 @@ Kirigami.ApplicationWindow { id: contextDrawer enabled: roomManager.hasOpenRoom room: roomManager.currentRoom - handleVisible: enabled && (pageStack.currentItem instanceof RoomPage) + handleVisible: enabled && (pageStack.currentItem instanceof RoomPage) && pageStack.layers.depth < 2 } globalDrawer: Kirigami.GlobalDrawer {