diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-11-29 19:58:29 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-29 19:58:29 -0800 |
commit | 9d6225831650dd9c6331763d29b392bc2741ae4e (patch) | |
tree | de25275781c4b15bf11feb1323bda6d353aa3909 /qt-mobile/qml/mobilecomponents/ContextDrawer.qml | |
parent | bb1803986afed7d1f626f941417acae6b3e51830 (diff) | |
parent | f8fb9181b2e95f76bb1170d2cd7c7bf920a9c414 (diff) | |
download | subsurface-9d6225831650dd9c6331763d29b392bc2741ae4e.tar.gz |
Merge branch 'mobilecomponents' of github.com:sebasje/subsurface
Diffstat (limited to 'qt-mobile/qml/mobilecomponents/ContextDrawer.qml')
-rw-r--r-- | qt-mobile/qml/mobilecomponents/ContextDrawer.qml | 4 |
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 |