diff --git a/qml/pages/FirstPage.qml b/qml/pages/FirstPage.qml index 84229d9..6705c28 100644 --- a/qml/pages/FirstPage.qml +++ b/qml/pages/FirstPage.qml @@ -87,7 +87,10 @@ Page { // To enable PullDownMenu, place our content in a SilicaFlickable SilicaFlickable { - anchors.fill: parent + anchors.top: parent.top + width: parent.width + anchors.bottom: fileDock.top + clip: true // PullDownMenu and PushUpMenu must be declared in SilicaFlickable, SilicaListView or SilicaGridView PullDownMenu { @@ -121,8 +124,8 @@ Page { } SilicaListView { - anchors.fill: parent id: listView + anchors.fill: parent model: IppDiscovery spacing: Theme.paddingSmall @@ -336,11 +339,6 @@ Page { } } - footer: Item { - id: footer - width: parent.width - height: fileDock.height - } } } DockedPanel {