disabled theme color option

This commit is contained in:
fourtf 2018-05-23 12:44:01 +02:00
parent a0fb6630e7
commit 75627bc037
2 changed files with 5 additions and 1 deletions

View file

@ -30,6 +30,10 @@ int main(int argc, char *argv[])
// TODO: can be any argument
if (args.size() > 0 && args[0].startsWith("chrome-extension://")) {
chatterino::Application::instantiate(argc, argv);
auto app = chatterino::getApp();
app->construct();
chatterino::Application::runNativeMessagingHost();
return 0;
}

View file

@ -52,7 +52,7 @@ AppearancePage::AppearancePage()
// clang-format off
form->addRow("Theme:", this->createComboBox({THEME_ITEMS}, app->themes->themeName));
form->addRow("Theme color:", this->createThemeColorChanger());
// form->addRow("Theme color:", this->createThemeColorChanger());
form->addRow("Font:", this->createFontChanger());
form->addRow("Tabs:", this->createCheckBox(TAB_X, app->settings->showTabCloseButton));