[WIP] Fixing stuff in light/white theme (#723)

* fixed color in light/white them when a tab lights pink

* fixes background color of chatterino in white/light-themes

* Fixed emoji-button in light/white-theme

* added light/white-theme addsplit-button

* forgot to add the image-file
This commit is contained in:
apa420
2018-09-21 20:18:52 +02:00
committed by pajlada
parent a733b6975d
commit a3a7317e62
7 changed files with 7 additions and 4 deletions
+2
View File
@@ -519,9 +519,11 @@ void SplitHeader::themeChangedEvent()
// --
if (this->theme->isLightTheme()) {
this->dropdownButton_->setPixmap(getApp()->resources->buttons.menuDark);
this->addButton_->setPixmap(getApp()->resources->buttons.addSplit);
} else {
this->dropdownButton_->setPixmap(
getApp()->resources->buttons.menuLight);
this->addButton_->setPixmap(getApp()->resources->buttons.addSplitDark);
}
}