From 756e0d9b6e003abe0d60fa0554ce446a2985cc09 Mon Sep 17 00:00:00 2001 From: smatz Date: Sat, 15 Mar 2008 20:32:42 +0000 Subject: [PATCH] (svn r12371) -Fix [FS#1823]: do not let window hide behind the main toolbar after resizing the screen --- src/window.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/window.cpp b/src/window.cpp index 82b6ced250..035d2bf929 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -2175,15 +2175,22 @@ void RelocateAllWindows(int neww, int newh) IConsoleResize(w); continue; - default: + default: { left = w->left; if (left + (w->width >> 1) >= neww) left = neww - w->width; if (left < 0) left = 0; top = w->top; if (top + (w->height >> 1) >= newh) top = newh - w->height; - if (top < 0) top = 0; - break; + + const Window *wt = FindWindowById(WC_MAIN_TOOLBAR, 0); + if (wt != NULL) { + if (top < wt->height) top = wt->height; + if (top >= newh) top = newh - 1; + } else { + if (top < 0) top = 0; + } + } break; } if (w->viewport != NULL) {