fix contactlist not shrinking in full mode
the build was successful Details

This commit is contained in:
Dan Ballard 2020-11-04 14:54:54 -08:00
parent d144f0d8b0
commit 5ca904b675
1 changed files with 2 additions and 2 deletions

View File

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