We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2bbd6 commit b68f947Copy full SHA for b68f947
1 file changed
ui_console.cpp
@@ -93,7 +93,7 @@ void ui_console_c::Hide()
93
94
bool ui_console_c::KeyEvent(int key, int type)
95
{
96
- if (type == KE_KEYDOWN && key == '`' && sys->IsKeyDown(KEY_CTRL)) {
+ if (type == KE_KEYDOWN && (key == '`' || key == KEY_F1) && sys->IsKeyDown(KEY_CTRL)) {
97
Toggle();
98
return true;
99
}
0 commit comments