diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-02-06 08:31:23 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-02-06 21:45:00 -0800 |
commit | f44e63b42701e503556b860588cd60dd387fadea (patch) | |
tree | 7f1cabd6e9a5f065ed50e6c05a4a05fdea45015e | |
parent | b7433b15ff9014112a39b758ad728fd71fd89fd2 (diff) | |
download | subsurface-f44e63b42701e503556b860588cd60dd387fadea.tar.gz |
mobile/settings: correctly draw the size buttons
With the columnSpan 3 (in a grid with only two columns) they were drawn
on top of the drop down for the theme.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/Settings.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/Settings.qml b/mobile-widgets/qml/Settings.qml index e01d83219..ccc84f450 100644 --- a/mobile-widgets/qml/Settings.qml +++ b/mobile-widgets/qml/Settings.qml @@ -317,7 +317,7 @@ TemplatePage { } Row { Layout.preferredWidth: gridWidth * 0.8 - Layout.columnSpan: 3 + Layout.columnSpan: 2 spacing: Kirigami.Units.largeSpacing TemplateButton { text: qsTr("smaller") |