From 5ca904b675d27cf1418f52f308f60e544f6d84a0 Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Wed, 4 Nov 2020 14:54:54 -0800 Subject: [PATCH] fix contactlist not shrinking in full mode --- qml/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qml/main.qml b/qml/main.qml index 7ca343bc..567d6f69 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -173,11 +173,11 @@ ApplicationWindow { Rectangle { // THE LEFT PANE WITH TOOLS AND CONTACTS color: Theme.backgroundMainColor Layout.fillHeight: true - Layout.minimumWidth: Layout.maximumWidth + Layout.minimumWidth: Theme.sidePaneMinSize Layout.maximumWidth: theStack.pane == theStack.emptyPane ? parent.width : Theme.sidePaneMinSize + Layout.fillWidth: theStack.pane == theStack.emptyPane ? true : false visible: (windowItem.width >= Theme.doublePaneMinSize && !Qt.inputMethod.visible) || theStack.pane == theStack.emptyPane - ContactList { anchors.top: parent.top anchors.left: parent.left