From 2690ba03b210f45ee154cff4e8417f86eae78e77 Mon Sep 17 00:00:00 2001 From: dominik Date: Sun, 12 Dec 2004 22:05:08 +0000 Subject: (svn r1040) Fix: All character hotkeys are disabled now when a window for typing is open --- terraform_gui.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'terraform_gui.c') diff --git a/terraform_gui.c b/terraform_gui.c index 1f6099501..82cfffd96 100644 --- a/terraform_gui.c +++ b/terraform_gui.c @@ -121,6 +121,11 @@ static void TerraformToolbWndProc(Window *w, WindowEvent *e) case WE_KEYPRESS: { int i; + + // check if we have a query string window open before allowing hotkeys + if(FindWindowById(WC_QUERY_STRING, 0)!=NULL) + break; + for(i=0; i!=lengthof(_terraform_keycodes); i++) if (e->keypress.keycode == _terraform_keycodes[i]) { e->keypress.cont = false; -- cgit v1.2.3-54-g00ecf