Using solarized by default.

This commit is contained in:
xarkes 2018-03-08 08:57:04 +01:00
parent 5734875405
commit 20c7b25308
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ Configuration* Configuration::instance()
void Configuration::loadInitial()
{
setDarkTheme(getDarkTheme());
QString theme = s.value("theme").toString();
QString theme = getCurrentTheme();
if (theme != "default")
{
Core()->cmd(QString("eco %1").arg(theme));

View File

@ -115,7 +115,7 @@ public:
int getAsmTabs() const { return s.value("asm.tabs", 5).toInt(); }
void setAsmTabs(int v) { s.setValue("asm.tabs", v); }
QString getCurrentTheme() const { return s.value("theme", "default").toString(); }
QString getCurrentTheme() const { return s.value("theme", "solarized").toString(); }
void setColorTheme(QString theme);
signals: