diff options
-rw-r--r-- | gui/ThemeNew.cpp | 2 | ||||
-rw-r--r-- | gui/theme.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/gui/ThemeNew.cpp b/gui/ThemeNew.cpp index 679d6c79f6..b5e043221b 100644 --- a/gui/ThemeNew.cpp +++ b/gui/ThemeNew.cpp @@ -224,6 +224,8 @@ void ThemeNew::refresh() { } void ThemeNew::enable() { + init(); + resetDrawArea(); _system->showOverlay(); clearAll(); } diff --git a/gui/theme.cpp b/gui/theme.cpp index e7fbdc6808..eacda895b9 100644 --- a/gui/theme.cpp +++ b/gui/theme.cpp @@ -77,6 +77,8 @@ void ThemeClassic::refresh() { } void ThemeClassic::enable() { + init(); + resetDrawArea(); _system->showOverlay(); clearAll(); } |