# HG changeset patch # User alberth # Date 2012-05-26 21:30:38 # Node ID fb3d571bc327dff19c5a71b31f9cdffa02fc5c96 # Parent 3003edfdafd1f6ea0faffeee2e77c6c9a00a7bd8 (svn r24293) -Fix: Increase the left and right margins of the text in the yes/no query window. diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -1297,8 +1297,8 @@ struct QueryWindow : public Window { if (widget != WID_Q_TEXT) return; Dimension d = GetStringMultiLineBoundingBox(this->message, *size); - d.width += padding.width; - d.height += padding.height; + d.width += WD_FRAMETEXT_LEFT + WD_FRAMETEXT_RIGHT; + d.height += WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM; *size = d; } @@ -1306,7 +1306,8 @@ struct QueryWindow : public Window { { if (widget != WID_Q_TEXT) return; - DrawStringMultiLine(r.left, r.right, r.top, r.bottom, this->message, TC_FROMSTRING, SA_CENTER); + DrawStringMultiLine(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, r.top + WD_FRAMERECT_TOP, r.bottom - WD_FRAMERECT_BOTTOM, + this->message, TC_FROMSTRING, SA_CENTER); } virtual void OnClick(Point pt, int widget, int click_count)