mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
disabled theme color option
This commit is contained in:
parent
a0fb6630e7
commit
75627bc037
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue