diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-07-08 14:00:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-07-13 00:43:31 +0300 |
commit | 72edb1ab7036ed859b543046b866d4092d3c6cdb (patch) | |
tree | 98aee9b5760383bf5cefc27c7323ac3ac41b6c77 /src | |
parent | 25c00083bc6320262236595c3b7f7b4a3341abf2 (diff) | |
download | plus-72edb1ab7036ed859b543046b866d4092d3c6cdb.tar.gz plus-72edb1ab7036ed859b543046b866d4092d3c6cdb.tar.bz2 plus-72edb1ab7036ed859b543046b866d4092d3c6cdb.tar.xz plus-72edb1ab7036ed859b543046b866d4092d3c6cdb.zip |
Fix theme colors loading with incorrect themes.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index a5dcb9e24..704a1f939 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -442,7 +442,7 @@ bool Theme::tryThemePath(std::string themeName) mThemePath = path; mThemeName = themeName; if (instance()) - instance()->loadColors(mThemePath); + instance()->loadColors(""); return true; } } |