From 6334e13d12f23b6ed74aa4f6986720e4d5e60277 Mon Sep 17 00:00:00 2001 From: frosch Date: Mon, 7 May 2012 19:34:51 +0000 Subject: (svn r24214) -Fix [FS#5159] (r22794): The confirmation window to abort world generation was hidden during world generation, so actually you could not abort it. --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/window.cpp') diff --git a/src/window.cpp b/src/window.cpp index 551161882..6e2916f9e 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -557,7 +557,7 @@ static bool MayBeShown(const Window *w) switch (w->window_class) { case WC_MAIN_WINDOW: ///< The background, i.e. the game. case WC_MODAL_PROGRESS: ///< The actual progress window. - case WC_QUERY_STRING: ///< The abort window. + case WC_CONFIRM_POPUP_QUERY: ///< The abort window. return true; default: -- cgit v1.2.3-54-g00ecf