diff options
author | glx <glx@openttd.org> | 2006-12-11 17:11:44 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2006-12-11 17:11:44 +0000 |
commit | ba8517e2aa821a2b42d384efdbf83c3c7f0b1f02 (patch) | |
tree | a073862f5d0f8673999530f29b6f436ac45f4bc7 | |
parent | 8b646c3cb24b78ad0c38e8e0e16a8756a37e9ee9 (diff) | |
download | openttd-ba8517e2aa821a2b42d384efdbf83c3c7f0b1f02.tar.xz |
(svn r7479) -Fix r5946: don't lower non-existent widget
-rw-r--r-- | misc_gui.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/misc_gui.c b/misc_gui.c index 66ef62ebf..371f7fc12 100644 --- a/misc_gui.c +++ b/misc_gui.c @@ -1220,7 +1220,6 @@ void ShowQuery(StringID caption, StringID message, void (*ok_cancel_callback)(bo w = AllocateWindowDesc(&_query_desc); - LowerWindowWidget(w, 5); WP(w, query_d).caption = caption; WP(w, query_d).message = message; WP(w, query_d).wnd_class = window_class; |