fix(StatusAppThreePanelLayout): hide right panel when closed
Brought back opacity condition deleted by mistake
This commit is contained in:
parent
ffc6fcb429
commit
6170599060
|
@ -38,6 +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 ? 50 : 0
|
||||||
|
opacity: root.showRightPanel ? 1.0 : 0.0
|
||||||
visible: (opacity > 0.1)
|
visible: (opacity > 0.1)
|
||||||
contentItem: Loader {
|
contentItem: Loader {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
Loading…
Reference in New Issue