diff --git a/package/contents/ui/AppletConfig.qml b/package/contents/ui/AppletConfig.qml index 00648dd7..c73075ed 100644 --- a/package/contents/ui/AppletConfig.qml +++ b/package/contents/ui/AppletConfig.qml @@ -19,6 +19,7 @@ Item { readonly property int sidebarPopupButtonSize: plasmoid.configuration.sidebarPopupButtonSize * PlasmaCore.Units.devicePixelRatio readonly property int appListWidth: plasmoid.configuration.appListWidth * PlasmaCore.Units.devicePixelRatio readonly property int tileEditorMinWidth: Math.max(350, 350 * PlasmaCore.Units.devicePixelRatio) + readonly property int minimumHeight: flatButtonSize * 5 // Issue #125 property bool showSearch: false property bool isEditingTile: false diff --git a/package/contents/ui/Main.qml b/package/contents/ui/Main.qml index 5ae731fa..dcd17775 100644 --- a/package/contents/ui/Main.qml +++ b/package/contents/ui/Main.qml @@ -140,6 +140,7 @@ Item { anchors.fill: parent } Layout.minimumWidth: config.leftSectionWidth + Layout.minimumHeight: config.minimumHeight Layout.preferredWidth: config.popupWidth Layout.preferredHeight: config.popupHeight