From ac5f0306e36ee526089f31aa647b4b5515e70030 Mon Sep 17 00:00:00 2001 From: truelight Date: Sat, 19 Aug 2006 19:45:04 +0000 Subject: [PATCH] (svn r5955) -Fix r5728: 2 very important lines for ShowQueryString where removed by excident. Because of this you couldn't join servers with passwords, and more of those problems. (tnx Mucht) --- intro_gui.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/intro_gui.c b/intro_gui.c index a896386e3d..7704c3b3eb 100644 --- a/intro_gui.c +++ b/intro_gui.c @@ -81,6 +81,9 @@ static void SelectGameWndProc(Window *w, WindowEvent *e) case 15: AskExitGame(); break; } break; + + case WE_ON_EDIT_TEXT: HandleOnEditText(e); break; + case WE_ON_EDIT_TEXT_CANCEL: HandleOnEditTextCancel(); break; } }