Skip to content

Commit

Permalink
Merge pull request #5345 from ARF-SS13/oohgimmeatab
Browse files Browse the repository at this point in the history
makes tab easier to use
  • Loading branch information
Tk420634 committed Aug 18, 2024
2 parents e6cefb6 + fa868af commit 5815fce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/modules/client/preferences.dm
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ GLOBAL_LIST_EMPTY(preferences_datums)
var/side_waddle_time = 2

/// Button to switch from input bar to hotkey mode.
var/input_mode_hotkey = "Ctrl+Tab"
var/input_mode_hotkey = "Tab"

/datum/preferences/New(client/C)
parent = C
Expand Down
2 changes: 1 addition & 1 deletion code/modules/client/preferences_savefile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
ooccolor = sanitize_ooccolor(sanitize_hexcolor(ooccolor, 6, 1, initial(ooccolor)))
lastchangelog = sanitize_text(lastchangelog, initial(lastchangelog))
genital_whitelist = sanitize_text(genital_whitelist, initial(genital_whitelist))
input_mode_hotkey = sanitize_text(input_mode_hotkey, initial(input_mode_hotkey))
input_mode_hotkey = "Tab" // *puts cup under disk drive* Tab, please! //sanitize_text(input_mode_hotkey, initial(input_mode_hotkey))
UI_style = sanitize_inlist(UI_style, GLOB.available_ui_styles, GLOB.available_ui_styles[1])
hotkeys = sanitize_integer(hotkeys, 0, 1, initial(hotkeys))
chat_on_map = sanitize_integer(chat_on_map, 0, 1, initial(chat_on_map))
Expand Down

0 comments on commit 5815fce

Please sign in to comment.