KeyboardLayout: increase font size and make it all caps

This commit is contained in:
Ly-sec 2025-09-11 01:10:04 +02:00
parent e4b54e518c
commit be0b568f1f
5 changed files with 62 additions and 3 deletions

View file

@ -15,6 +15,7 @@ Item {
property bool disableOpen: false
property bool rightOpen: false
property bool hovered: false
property real fontSize: Style.fontSizeXS
// Effective shown state (true if hovered/animated open or forced)
readonly property bool revealed: forceOpen || showPill
@ -69,7 +70,7 @@ Item {
return centerX + offset
}
text: root.text
font.pointSize: Style.fontSizeXS * scaling
font.pointSize: root.fontSize * scaling
font.weight: Style.fontWeightBold
color: Color.mPrimary
visible: revealed