From 04833efa7ff975b2a121947e4f557f8df2a19940 Mon Sep 17 00:00:00 2001 From: Bart De Vries Date: Tue, 25 May 2021 21:57:01 +0200 Subject: [PATCH] Make sure that globaldrawer doesn't disappear on resize --- src/qml/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/main.qml b/src/qml/main.qml index 788fa749..1f176a63 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -47,7 +47,7 @@ Kirigami.ApplicationWindow { isMenu: false modal: !wideScreen || Kirigami.Settings.isMobile header: Kirigami.AbstractApplicationHeader { - visible: wideScreen + visible: wideScreen && !Kirigami.Settings.isMobile } // make room at the bottom for miniplayer handle.anchors.bottomMargin: (AudioManager.entry ? (footerLoader.item.contentY == 0 ? miniplayerSize : 0) : 0) + Kirigami.Units.smallSpacing + tabBarActive * tabBarHeight