Store keybind priority (#26356)
* Fix saving keybind priority * Change movestoreditem keybind priority to prevent bug --------- Co-authored-by: wrexbe <wrexbe@protonmail.com>
This commit is contained in:
parent
4dced51f0d
commit
f7a1ffd0aa
2 changed files with 2 additions and 1 deletions
|
|
@ -403,7 +403,7 @@ namespace Content.Client.Options.UI.Tabs
|
|||
Mod1 = mods[0],
|
||||
Mod2 = mods[1],
|
||||
Mod3 = mods[2],
|
||||
Priority = 0,
|
||||
Priority = _currentlyRebinding.Binding?.Priority ?? 0,
|
||||
Type = bindType,
|
||||
CanFocus = key == Keyboard.Key.MouseLeft
|
||||
|| key == Keyboard.Key.MouseRight
|
||||
|
|
|
|||
|
|
@ -167,6 +167,7 @@ binds:
|
|||
type: State
|
||||
key: MouseLeft
|
||||
canFocus: true
|
||||
priority: 10
|
||||
- function: RotateStoredItem
|
||||
type: State
|
||||
key: MouseRight
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue