- Forcing 'classic' as the builtin classic theme (which means it ignores the classic.ini atm)
svn-id: r24216
This commit is contained in:
parent
0b75c74717
commit
1ced1777f8
3 changed files with 28 additions and 13 deletions
|
@ -82,6 +82,13 @@ void ThemeBrowser::handleCommand(CommandSender *sender, uint32 cmd, uint32 data)
|
|||
|
||||
void ThemeBrowser::updateListing() {
|
||||
_themes.clear();
|
||||
|
||||
// classic is always build in
|
||||
Entry th;
|
||||
th.name = "classic";
|
||||
th.type = "classic";
|
||||
th.file = "classic";
|
||||
_themes.push_back(th);
|
||||
|
||||
if (ConfMan.hasKey("themepath"))
|
||||
addDir(_themes, ConfMan.get("themepath"), 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue