From 386853f89c9d6dbeccdd2e3215774b42e179f119 Mon Sep 17 00:00:00 2001 From: Hauke Schade Date: Tue, 5 Jul 2016 18:22:20 +0200 Subject: [PATCH] [Sailfish] proper height for the Drawer --- qml/ttrss/sailfish/pages/FeedItems.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/qml/ttrss/sailfish/pages/FeedItems.qml b/qml/ttrss/sailfish/pages/FeedItems.qml index 74095ed..99847ed 100644 --- a/qml/ttrss/sailfish/pages/FeedItems.qml +++ b/qml/ttrss/sailfish/pages/FeedItems.qml @@ -47,7 +47,9 @@ Page { background: SilicaFlickable { id: drawerView anchors.fill: parent - contentHeight: selectionModeActive ? 250 : Theme.itemSizeSmall + contentHeight: selectionModeActive + ? Theme.itemSizeSmall + Theme.itemSizeMedium + Theme.itemSizeExtraSmall + : Theme.itemSizeSmall clip: true Column { @@ -76,7 +78,7 @@ Page { anchors.horizontalCenter: parent.horizontalCenter color: Theme.highlightColor horizontalAlignment: Text.AlignHCenter - font.pixelSize: Theme.fontSizeExtraLarge + font.pixelSize: Theme.fontSizeLarge text: qsTr("%1 selected").arg(feedItemModel.selectedItems) }