summaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/mobilecomponents/ContextDrawer.qml
diff options
context:
space:
mode:
authorGravatar Sebastian Kügler <sebas@kde.org>2015-11-30 01:17:41 +0100
committerGravatar Sebastian Kügler <sebas@kde.org>2015-11-30 02:43:40 +0100
commit09bf7fabcfac66df6cdcfd3d55650f3d58a195d9 (patch)
tree88c6902f3c66df5b863ba2e2ebabbb15a703de1f /qt-mobile/qml/mobilecomponents/ContextDrawer.qml
parent52b3c68b24d5c874b6b15dd90a3421d393520120 (diff)
downloadsubsurface-09bf7fabcfac66df6cdcfd3d55650f3d58a195d9.tar.gz
sync with mobilecomponents e7d789465b9a935ec
This fixes lack of spacing in the drawer's menu items. Signed-off-by: Sebastian Kügler <sebas@kde.org>
Diffstat (limited to 'qt-mobile/qml/mobilecomponents/ContextDrawer.qml')
-rw-r--r--qt-mobile/qml/mobilecomponents/ContextDrawer.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/qt-mobile/qml/mobilecomponents/ContextDrawer.qml b/qt-mobile/qml/mobilecomponents/ContextDrawer.qml
index 2e2f95f7e..083254946 100644
--- a/qt-mobile/qml/mobilecomponents/ContextDrawer.qml
+++ b/qt-mobile/qml/mobilecomponents/ContextDrawer.qml
@@ -18,6 +18,7 @@
*/
import QtQuick 2.1
+import QtQuick.Layouts 1.2
import QtQuick.Controls 1.0 as QtControls
import org.kde.plasma.mobilecomponents 0.2
@@ -63,7 +64,8 @@ OverlayDrawer {
}
delegate: ListItem {
enabled: true
- Row {
+ RowLayout {
+ height: implicitHeight + Units.smallSpacing * 2
anchors {
left: parent.left
margins: Units.largeSpacing