From 8018aeac9f6907b434f74b52b7208395c5d11ef3 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Mon, 4 Aug 2008 05:59:28 +0000 Subject: (svn r13987) -Codechange: Resize small map legend dynamically on window resize and when switching small map types, so that the legend is taller only on the industry type and only when the legend will not fit in the available space. --- src/widget.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/widget.cpp') diff --git a/src/widget.cpp b/src/widget.cpp index aa93317d2..f6401e14d 100644 --- a/src/widget.cpp +++ b/src/widget.cpp @@ -607,6 +607,9 @@ void ResizeWindowForWidget(Window *w, uint widget, int delta_x, int delta_y) if (right == w->widget[widget].left) w->widget[widget].right--; if (bottom == w->widget[widget].top) w->widget[widget].bottom--; + if (w->widget[widget].left > w->widget[widget].right) w->widget[widget].right = w->widget[widget].left; + if (w->widget[widget].top > w->widget[widget].bottom) w->widget[widget].bottom = w->widget[widget].top; + w->width += delta_x; w->height += delta_y; w->resize.width += delta_x; -- cgit v1.2.3-54-g00ecf