diff --git a/qml/extensions/qml_tutorial_7/main.qml b/qml/extensions/qml_tutorial_7/main.qml index 3817c9c..50b1b86 100644 --- a/qml/extensions/qml_tutorial_7/main.qml +++ b/qml/extensions/qml_tutorial_7/main.qml @@ -1,5 +1,6 @@ import org.kde.falkon 1.0 as Falkon import QtQuick.Controls 2.3 +import QtQuick.Layouts 1.0 import QtQuick 2.3 Falkon.PluginInterface { @@ -25,18 +26,18 @@ Falkon.PluginInterface { shortcut: 'Ctrl+Shift+Alt+S' Pane { - Image { - source: 'qrc:/icons/other/startpage.svg' - anchors.verticalCenter: parent.verticalCenter - anchors.left: parent.left - anchors.right: parent.right - } + ColumnLayout { + anchors.fill: parent + Image { + Layout.alignment: Qt.AlignHCenter + source: 'qrc:/icons/other/startpage.svg' + } - Button { - text: i18n('Hello Qml Plugin') - anchors.left: parent.left - anchors.right: parent.right - anchors.bottom: parent.bottom + Button { + Layout.fillWidth: true + Layout.alignment: Qt.AlignBottom + text: i18n('Hello Qml Plugin') + } } } }