From 60a64e14aaa08a4979ac3adfd14be1c37ce704d6 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Tue, 18 Oct 2022 13:40:35 -0500 Subject: [PATCH] ensure library is only visible when "opened" --- src/qml/presenter/MainWindow.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qml/presenter/MainWindow.qml b/src/qml/presenter/MainWindow.qml index b3673c3..4c0af6b 100644 --- a/src/qml/presenter/MainWindow.qml +++ b/src/qml/presenter/MainWindow.qml @@ -117,6 +117,7 @@ Controls.Page { id: library Controls.SplitView.preferredWidth: libraryOpen ? 200 : 0 Controls.SplitView.maximumWidth: 350 + visible: libraryOpen ? true : false } }