From 16c90ed48bf8e840d303ff3f52984e91d6e22776 Mon Sep 17 00:00:00 2001 From: rubidium Date: Thu, 18 Nov 2010 19:24:40 +0000 Subject: (svn r21244) -Fix [FS#4240] (r21179): the news message always stayed in the middle; let it follow the setting of the statusbar instead --- src/settings.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/settings.cpp') diff --git a/src/settings.cpp b/src/settings.cpp index 28f3fb9fe..387db7cfa 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -693,7 +693,10 @@ static bool v_PositionMainToolbar(int32 p1) /** Reposition the statusbar as the setting changed. */ static bool v_PositionStatusbar(int32 p1) { - if (_game_mode != GM_MENU) PositionStatusbar(NULL); + if (_game_mode != GM_MENU) { + PositionStatusbar(NULL); + PositionNewsMessage(NULL); + } return true; } -- cgit v1.2.3-54-g00ecf