Fix bugs mentioned in #1730147 "GUI: Classic themes need to be updated"
svn-id: r27061
This commit is contained in:
parent
3ba184b21f
commit
09ae91b118
2 changed files with 68 additions and 50 deletions
|
@ -139,7 +139,8 @@ bool NewGui::loadNewTheme(const Common::String &style) {
|
|||
delete _theme;
|
||||
_theme = 0;
|
||||
|
||||
if (style.compareToIgnoreCase("classic (builtin)") == 0) {
|
||||
if (style.compareToIgnoreCase("classic (builtin)") == 0 ||
|
||||
style.compareToIgnoreCase("classic") == 0) {
|
||||
_theme = new ThemeClassic(_system, style);
|
||||
} else {
|
||||
if (Theme::themeConfigUseable(style, "", &styleType, &cfg)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue