File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ Template for new versions:
34
34
- `gui/notify`: persist notification settings when toggled in the UI
35
35
36
36
## Misc Improvements
37
+ - `gui/launcher`: developer mode hotkey restored to Ctrl-D
37
38
38
39
## Removed
39
40
Original file line number Diff line number Diff line change @@ -108,4 +108,4 @@ Dev mode
108
108
109
109
By default, commands intended for developers and modders are filtered out of the
110
110
autocomplete list. This includes any tools tagged with ``unavailable ``. You can
111
- toggle this filtering by hitting :kbd: `Alt `:kbd: `D ` at any time.
111
+ toggle this filtering by hitting :kbd: `Ctrl `:kbd: `D ` at any time.
Original file line number Diff line number Diff line change 490
490
function MainPanel :onInput (keys )
491
491
if MainPanel .super .onInput (self , keys ) then
492
492
return true
493
- elseif keys .CUSTOM_ALT_D then
493
+ elseif keys .CUSTOM_CTRL_D then
494
494
dev_mode = not dev_mode
495
495
self .update_autocomplete (get_first_word (self .subviews .editfield .text ))
496
496
return true
You can’t perform that action at this time.
0 commit comments