mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 19:36:11 +00:00
Using solarized by default.
This commit is contained in:
parent
5734875405
commit
20c7b25308
@ -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));
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user