diff options
Diffstat (limited to 'main_gui.c')
-rw-r--r-- | main_gui.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main_gui.c b/main_gui.c index edbe36fe7..334952b65 100644 --- a/main_gui.c +++ b/main_gui.c @@ -9,7 +9,7 @@ #include "command.h" #include "news.h" #include "town.h" -#include "vehicle.h"
+#include "vehicle.h" #include "console.h" #include "table/animcursors.h" @@ -1688,8 +1688,8 @@ static void MainToolbarWndProc(Window *w, WindowEvent *e) case WKC_SHIFT | WKC_F11: ShowBuildTreesToolbar(); break; case WKC_SHIFT | WKC_F12: ShowMusicWindow(); break; case WKC_CTRL | 'S': _make_screenshot = 1; break; - case WKC_CTRL | 'G': _make_screenshot = 2; break;
- case WKC_TAB: IConsoleSwitch(); e->keypress.keycode=0; break; + case WKC_CTRL | 'G': _make_screenshot = 2; break; + case WKC_BACKQUOTE: IConsoleSwitch(); e->keypress.keycode=0; break; case WKC_CTRL | WKC_ALT | 'C': if(!_networking) ShowCheatWindow(); break; } } break; |