2018-09-28 21:51:54 +00:00
|
|
|
diff -ur ../kirigami/src/controls/GlobalDrawer.qml mobile-widgets/qml/kirigami/src/controls/GlobalDrawer.qml
|
2018-09-30 18:59:32 +00:00
|
|
|
--- ../kirigami/src/controls/GlobalDrawer.qml 2018-09-27 15:27:32.340600738 +0200
|
|
|
|
+++ src/controls/GlobalDrawer.qml 2018-09-27 16:45:29.689438950 +0200
|
|
|
|
@@ -328,17 +328,13 @@
|
|
|
|
ColumnLayout {
|
2018-06-16 20:59:02 +00:00
|
|
|
id: topContent
|
|
|
|
spacing: 0
|
|
|
|
- Layout.alignment: Qt.AlignHCenter
|
|
|
|
- Layout.leftMargin: root.leftPadding
|
|
|
|
- Layout.rightMargin: root.rightPadding
|
|
|
|
Layout.bottomMargin: Units.smallSpacing
|
|
|
|
- Layout.topMargin: root.topPadding
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
2018-09-30 18:59:32 +00:00
|
|
|
Layout.preferredHeight: implicitHeight * opacity
|
2018-06-16 20:59:02 +00:00
|
|
|
//NOTE: why this? just Layout.fillWidth: true doesn't seem sufficient
|
|
|
|
//as items are added only after this column creation
|
|
|
|
- Layout.minimumWidth: parent.width - root.leftPadding - root.rightPadding
|
|
|
|
+ Layout.minimumWidth: parent.width
|
2018-09-30 18:59:32 +00:00
|
|
|
visible: children.length > 0 && childrenRect.height > 0 && opacity > 0
|
|
|
|
opacity: !root.collapsed || showTopContentWhenCollapsed
|
|
|
|
Behavior on opacity {
|