From 0b4f924683ab86cc59231585b12e13ea2741d1bf Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Fri, 24 Jun 2022 16:23:58 -0400 Subject: [PATCH] qml: Make annotations on CharKey appear larger to be more visible Some keys have annotations that are quite difficult to discern in some situations, so make the label for the annotation a little larger to more easily read them in those cases. --- qml/keys/CharKey.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/keys/CharKey.qml b/qml/keys/CharKey.qml index 7a9d0d2b..fd947930 100644 --- a/qml/keys/CharKey.qml +++ b/qml/keys/CharKey.qml @@ -177,7 +177,7 @@ Item { anchors.top: parent.top anchors.topMargin: Device.annotationTopMargin anchors.rightMargin: Device.annotationRightMargin - font.pixelSize: key.fontSize / 3 + font.pixelSize: key.fontSize / 2 font.weight: Font.Light visible: !panel.hideKeyLabels }