Skip to content

Commit bd01ad7

Browse files
committed
restore gui/launcher dev mode hotkey to Ctrl-D
1 parent bf5dc78 commit bd01ad7

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Template for new versions:
3434
- `gui/notify`: persist notification settings when toggled in the UI
3535

3636
## Misc Improvements
37+
- `gui/launcher`: developer mode hotkey restored to Ctrl-D
3738

3839
## Removed
3940

docs/gui/launcher.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ Dev mode
108108

109109
By default, commands intended for developers and modders are filtered out of the
110110
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.

gui/launcher.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ end
490490
function MainPanel:onInput(keys)
491491
if MainPanel.super.onInput(self, keys) then
492492
return true
493-
elseif keys.CUSTOM_ALT_D then
493+
elseif keys.CUSTOM_CTRL_D then
494494
dev_mode = not dev_mode
495495
self.update_autocomplete(get_first_word(self.subviews.editfield.text))
496496
return true

0 commit comments

Comments
 (0)