Skip to content

Commit d64a383

Browse files
committed
Fix order of Hotkey.stringValue
1 parent c9a4275 commit d64a383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ice/Hotkeys/Hotkey.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct Hotkey: Codable, Hashable {
1818

1919
/// A string representation of the hotkey.
2020
var stringValue: String {
21-
key.stringValue + modifiers.stringValue
21+
modifiers.stringValue + key.stringValue
2222
}
2323

2424
/// Creates a hotkey with the given key and modifiers.

0 commit comments

Comments
 (0)