From 65cae23957b84289a5c38ac0cb00e4c51171ca75 Mon Sep 17 00:00:00 2001 From: Chronophylos Date: Sun, 9 Dec 2018 12:44:37 +0100 Subject: [PATCH] made highlights not black anymore --- src/singletons/Theme.cpp | 4 ++++ src/widgets/splits/Split.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/singletons/Theme.cpp b/src/singletons/Theme.cpp index 7738ae1b9..70d70776c 100644 --- a/src/singletons/Theme.cpp +++ b/src/singletons/Theme.cpp @@ -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) diff --git a/src/widgets/splits/Split.cpp b/src/widgets/splits/Split.cpp index 829014a99..b52141c13 100644 --- a/src/widgets/splits/Split.cpp +++ b/src/widgets/splits/Split.cpp @@ -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);