From 7da4bdee74e2fa6ec56c9583bb1b795b8f26fd0c Mon Sep 17 00:00:00 2001 From: Alexandra Betouni <31625338+alexandraB99@users.noreply.github.com> Date: Thu, 26 Aug 2021 15:07:15 +0300 Subject: [PATCH] fix(StatusAppThreePanelLayout): increase minimum width in right panel This is to ensure it also inlcludes right margin. --- src/StatusQ/Layout/StatusAppThreePanelLayout.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/StatusQ/Layout/StatusAppThreePanelLayout.qml b/src/StatusQ/Layout/StatusAppThreePanelLayout.qml index b330b04e..241a4477 100644 --- a/src/StatusQ/Layout/StatusAppThreePanelLayout.qml +++ b/src/StatusQ/Layout/StatusAppThreePanelLayout.qml @@ -4,7 +4,6 @@ import StatusQ.Core.Theme 0.1 SplitView { id: root - implicitWidth: 822 implicitHeight: 600 @@ -39,7 +38,7 @@ SplitView { Control { SplitView.preferredWidth: root.showRightPanel ? 250 : 0 - SplitView.minimumWidth: root.showRightPanel ? 50 : 0 + SplitView.minimumWidth: root.showRightPanel ? 58 : 0 opacity: root.showRightPanel ? 1.0 : 0.0 visible: (opacity > 0.1) contentItem: Loader {