made highlights not black anymore

This commit is contained in:
Chronophylos 2018-12-09 12:44:37 +01:00 committed by pajlada
parent 0cf0842b99
commit 65cae23957
2 changed files with 5 additions and 1 deletions

View file

@ -72,6 +72,10 @@ void Theme::actuallyUpdate(double hue, double multiplier)
this->splits.background = getColor(0, sat, 1);
this->splits.dropPreview = QColor(0, 148, 255, 0x30);
this->splits.dropPreviewBorder = QColor(0, 148, 255, 0xff);
// Highlighted Messages
this->messages.backgrounds.highlighted =
QColor(getSettings()->highlightColor);
}
void Theme::normalizeColor(QColor &color)

View file

@ -110,7 +110,7 @@ Split::Split(QWidget *parent)
// F5: reload emotes
createShortcut(this, "F5", &Split::reloadChannelAndSubscriberEmotes);
// F12
// F10
createShortcut(this, "F10", [] {
auto *popup = new DebugPopup;
popup->setAttribute(Qt::WA_DeleteOnClose);