(svn r21244) -Fix [FS#4240] (r21179): the news message always stayed in the middle; let it follow the setting of the statusbar instead

This commit is contained in:
rubidium
2010-11-18 19:24:40 +00:00
parent 876f1840b4
commit bf6b6b8bc9
4 changed files with 23 additions and 3 deletions

View File

@@ -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;
}