From 86cafaf72eab40878a17cb0b3fbd1544c120e109 Mon Sep 17 00:00:00 2001 From: Martin Klapetek Date: Wed, 24 Jun 2015 16:59:16 +0200 Subject: [PATCH] [dialer] Fix the missing number 4 on the dialpad For some reason the number 4 will not appear unless the max point size is set to 22, I have spent about an hour investigating and can't figure out why the heck that 4 wouldn't appear and I still don't know, so I left it at 22 for now (the size was 23~24 before anyway). --- dialer/package/contents/ui/Dialpad/DialerButton.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dialer/package/contents/ui/Dialpad/DialerButton.qml b/dialer/package/contents/ui/Dialpad/DialerButton.qml index 2b97ec4..6df2dc9 100644 --- a/dialer/package/contents/ui/Dialpad/DialerButton.qml +++ b/dialer/package/contents/ui/Dialpad/DialerButton.qml @@ -31,7 +31,8 @@ PlasmaComponents.Label { height: 0 horizontalAlignment: Qt.AlignHCenter verticalAlignment: Qt.AlignVCenter - font.pointSize: 1024 + font.pointSize: 22 //anything higher for some reason makes number 4 not rendered + minimumPointSize: 8 fontSizeMode: Text.VerticalFit property alias sub: longHold.text -- GitLab