fix(StatusAppThreePanelLayout): increase minimum width in right panel

This is to ensure it also inlcludes right margin.
This commit is contained in:
Alexandra Betouni 2021-08-26 15:07:15 +03:00 committed by Michał Cieślak
parent e33e51f11a
commit c4aa67a751
1 changed files with 1 additions and 2 deletions

View File

@ -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 {