diff options
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" } } |