File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,8 @@ export const ConfigPage: React.FC<Props> = (props) => {
105105
106106 if ( keyboard . keyCode === 'KeyF' )
107107 context . updateConfigValue ( 'focusRobotTurn' , ! context . state . config . focusRobotTurn )
108+ if ( keyboard . keyCode === 'KeyI' )
109+ context . updateConfigValue ( 'showAllIndicators' , ! context . state . config . showAllIndicators )
108110 } , [ keyboard . keyCode ] )
109111
110112 if ( ! props . open ) return null
Original file line number Diff line number Diff line change @@ -132,6 +132,7 @@ export const HelpPage: React.FC<Props> = (props) => {
132132 ) }
133133 { hotkeyElement ( `R` , 'Resets the map camera if it has been panned/zoomed' ) }
134134 { hotkeyElement ( `C` , 'Hides and unhides game control bar' ) }
135+ { hotkeyElement ( `F` , 'Toggles the show all indicators config' ) }
135136 { hotkeyElement ( `T` , 'Toggles per-turn playback for the current game' ) }
136137 { hotkeyElement ( `F` , 'Toggles per-turn robot focus config' ) }
137138 { hotkeyElement ( `.` , 'Skip to the very last round of the current game' ) }
You can’t perform that action at this time.
0 commit comments