From fc197be2f0c38d111cd45d5165540ec4c728627f Mon Sep 17 00:00:00 2001 From: skidau Date: Sat, 23 May 2015 11:58:29 +0000 Subject: [PATCH] Automatically disabled the OSD if there is a status bar visible. --- src/wx/panel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/panel.cpp b/src/wx/panel.cpp index 8e1cce6a..0caa64ac 100644 --- a/src/wx/panel.cpp +++ b/src/wx/panel.cpp @@ -1791,7 +1791,7 @@ void DrawingPanel::DrawArea(u8** data) // draw OSD text old-style (directly into output buffer), if needed // new style flickers too much, so we'll stick to this for now - if (1) + if (wxGetApp().frame->IsFullScreen()) { GameArea* panel = wxGetApp().frame->GetPanel();