diff options
Diffstat (limited to 'src/news_gui.cpp')
-rw-r--r-- | src/news_gui.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/news_gui.cpp b/src/news_gui.cpp index 4e2ebd4f9..03033beae 100644 --- a/src/news_gui.cpp +++ b/src/news_gui.cpp @@ -328,6 +328,8 @@ struct NewsWindow : Window { nvp->disp_flags |= ND_SHADE_DIMMED; } } + + PositionNewsMessage(this); } void DrawNewsBorder(const Rect &r) const @@ -342,7 +344,7 @@ struct NewsWindow : Window { virtual Point OnInitialPosition(const WindowDesc *desc, int16 sm_width, int16 sm_height, int window_number) { - Point pt = { (_screen.width - max(sm_width, desc->default_width)) / 2, _screen.height }; + Point pt = { 0, _screen.height }; return pt; } |