macOS: command palette visual tweaks

This commit is contained in:
Mitchell Hashimoto
2025-04-21 10:32:07 -07:00
parent baad082438
commit e33eed0216
3 changed files with 21 additions and 9 deletions

View File

@@ -29,7 +29,7 @@ extension KeyboardShortcut: @retroactive CustomStringConvertible {
case .leftArrow: keyString = ""
case .rightArrow: keyString = ""
default:
keyString = String(key.character)
keyString = String(key.character.uppercased())
}
result.append(keyString)