diff --git a/wallpapers/potd/contents/ui/config.qml b/wallpapers/potd/contents/ui/config.qml --- a/wallpapers/potd/contents/ui/config.qml +++ b/wallpapers/potd/contents/ui/config.qml @@ -18,11 +18,12 @@ */ import QtQuick 2.5 +import QtQuick.Layouts 1.0 import QtQuick.Controls 1.0 as QtControls import QtQuick.Dialogs 1.1 as QtDialogs import org.kde.plasma.core 2.0 as PlasmaCore -Column { +ColumnLayout { id: root property string cfg_Provider property int cfg_FillMode @@ -164,4 +165,8 @@ } } } + + Item { // tighten layout + Layout.fillHeight: true + } }