end-4 feedback

This commit is contained in:
Madjid Taha
2025-10-30 22:12:25 +01:00
parent a0332cb0df
commit aeb1955947
4 changed files with 165 additions and 163 deletions
@@ -169,7 +169,7 @@ Item {
delegate: KeyboardKey {
required property var modelData
key: keySubstitutions[modelData] || modelData
pixelSize: Config.options.appearance.keybinds.pixelSize.key
pixelSize: Config.options.appearance.keybinds.fontSize.key
}
}
StyledText {
@@ -181,7 +181,7 @@ Item {
id: keybindKey
visible: !Config.options.appearance.keybinds.useMacLikeShortcut && !keyBlacklist.includes(modelData.key)
key: keySubstitutions[modelData.key] || modelData.key
pixelSize: Config.options.appearance.keybinds.pixelSize.key
pixelSize: Config.options.appearance.keybinds.fontSize.key
color: Appearance.colors.colOnLayer0
}
}
@@ -197,7 +197,7 @@ Item {
StyledText {
id: commentText
anchors.centerIn: parent
font.pixelSize: Config.options.appearance.keybinds.pixelSize.comment || Appearance.font.pixelSize.smaller
font.pixelSize: Config.options.appearance.keybinds.fontSize.comment || Appearance.font.pixelSize.smaller
text: modelData.comment
}
}