Fix room pane default size

This commit is contained in:
miruka
2020-03-19 00:13:19 -04:00
parent 588dc4eec3
commit fe40d117b2
2 changed files with 12 additions and 4 deletions

View File

@@ -6,13 +6,15 @@ import QtQuick.Layouts 1.12
HDrawer {
id: pane
defaultSize: buttonRepeater.summedImplicitWidth
minimumSize:
buttonRepeater.count > 0 ? buttonRepeater.itemAt(0).implicitWidth : 0
defaultSize: buttonRepeater.count * buttonWidth
minimumSize: buttonWidth
property color buttonsBackgroundColor
property int buttonWidth:
buttonRepeater.count > 0 ? buttonRepeater.itemAt(0).implicitWidth : 0
readonly property alias buttonRepeater: buttonRepeater
readonly property alias swipeView: swipeView
@@ -33,7 +35,7 @@ HDrawer {
width: parent.width
populate: null
HRepeater {
Repeater {
id: buttonRepeater
}
}