From 7e58ddcd5bdc064b3f9a0c8ce47f187a3bb22ee8 Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sat, 5 Jan 2019 19:26:48 +0100 Subject: Applications: give more space to buttons texts --- qml/mw-ui.qml | 6 +++--- 1 file 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" } } -- cgit v1.2.1