diff options
author | Papoteur <papoteur@mageia.org> | 2019-01-05 19:26:48 +0100 |
---|---|---|
committer | Papoteur <papoteur@mageia.org> | 2019-01-05 19:28:22 +0100 |
commit | 6e177c1db8f2f62578c512171e3f919342c45997 (patch) | |
tree | 17df1517d954b7e71568c77a34a70b3ba8c4ff81 /qml | |
parent | 5ebf0606a958808f052a3f826e77f3e17161367d (diff) | |
download | mageiawelcome-6e177c1db8f2f62578c512171e3f919342c45997.tar mageiawelcome-6e177c1db8f2f62578c512171e3f919342c45997.tar.gz mageiawelcome-6e177c1db8f2f62578c512171e3f919342c45997.tar.bz2 mageiawelcome-6e177c1db8f2f62578c512171e3f919342c45997.tar.xz mageiawelcome-6e177c1db8f2f62578c512171e3f919342c45997.zip |
Applications: give more space to buttons texts
Diffstat (limited to 'qml')
-rw-r--r-- | qml/mw-ui.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qml/mw-ui.qml b/qml/mw-ui.qml index c29fadb..cebd7aa 100644 --- a/qml/mw-ui.qml +++ b/qml/mw-ui.qml @@ -629,7 +629,7 @@ Rectangle { Loader { Component { id: button; Button { - width: Qt.application.font.pixelSize * 4; height: Qt.application.font.pixelSize * 1.3 + width: Qt.application.font.pixelSize * 5; height: Qt.application.font.pixelSize * 1.3 objectName: "launch" onClicked: { launch.command(["gurpmi",name,])} @@ -647,7 +647,7 @@ Rectangle { } Component { id: launcher; Button { - width: Qt.application.font.pixelSize * 4; height: Qt.application.font.pixelSize * 1.3 + width: Qt.application.font.pixelSize * 5; height: Qt.application.font.pixelSize * 1.3 objectName: "launch" onClicked: { launch.command([command,])} @@ -666,7 +666,7 @@ Rectangle { padding: 2 horizontalAlignment: TextInput.AlignHCenter font.pixelSize: Qt.application.font.pixelSize * .8 - width: Qt.application.font.pixelSize * 4 + width: Qt.application.font.pixelSize * 5 color: "white" } } |