fix(StatusAppThreePanelLayout): increase minimum width in right panel
This is to ensure it also inlcludes right margin.
This commit is contained in:
parent
e33e51f11a
commit
c4aa67a751
|
@ -4,7 +4,6 @@ import StatusQ.Core.Theme 0.1
|
||||||
|
|
||||||
SplitView {
|
SplitView {
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
implicitWidth: 822
|
implicitWidth: 822
|
||||||
implicitHeight: 600
|
implicitHeight: 600
|
||||||
|
|
||||||
|
@ -39,7 +38,7 @@ SplitView {
|
||||||
|
|
||||||
Control {
|
Control {
|
||||||
SplitView.preferredWidth: root.showRightPanel ? 250 : 0
|
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
|
opacity: root.showRightPanel ? 1.0 : 0.0
|
||||||
visible: (opacity > 0.1)
|
visible: (opacity > 0.1)
|
||||||
contentItem: Loader {
|
contentItem: Loader {
|
||||||
|
|
Loading…
Reference in New Issue