diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-19 12:53:32 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-19 12:53:32 -0800 |
commit | 88101e4dd32d78f20ff2fe99f719e30ce170dd8f (patch) | |
tree | a96c68bd8b117cd08ba1560be947edde7c99ef30 /qt-mobile/qml | |
parent | 04e994b57558ed9db0e5175c89c131f7f87d1bb7 (diff) | |
download | subsurface-88101e4dd32d78f20ff2fe99f719e30ce170dd8f.tar.gz |
QML UI: don't shorten the buttons
I want a prettier visual for those, anyway, but artificially making them
shorter than that text they display seems silly - and causes the text to be
trunkated for no good reason on some devices.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml')
-rw-r--r-- | qt-mobile/qml/StartPage.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/StartPage.qml b/qt-mobile/qml/StartPage.qml index 74da73ba8..f8dc36735 100644 --- a/qt-mobile/qml/StartPage.qml +++ b/qt-mobile/qml/StartPage.qml @@ -9,7 +9,7 @@ Item { anchors.fill: parent anchors.margins: MobileComponents.Units.gridUnit / 2 - property int buttonWidth: welcomeText.width * 0.66 + property int buttonWidth: welcomeText.width MobileComponents.Heading { Layout.bottomMargin: MobileComponents.Units.largeSpacing |