mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fix IRC actions not being colored properly (#3341)
This commit is contained in:
parent
3c4331b8cb
commit
bc0b7e4d99
|
@ -50,6 +50,7 @@
|
|||
- Bugfix: Fixed `First Message` scrollbar highlights not being disabled. (#3325)
|
||||
- Bugfix: Fixed the reconnection backoff accidentally resetting when thrown out of certain IRC servers. (#3328)
|
||||
- Bugfix: Fixed underlying text from disabled emotes not being colorized properly. (#3333)
|
||||
- Bugfix: Fixed IRC ACTION messages (/me) not being colorized properly. (#3341)
|
||||
- Dev: Add GitHub action to test builds without precompiled headers enabled. (#3327)
|
||||
- Dev: Renamed CMake's build option `USE_SYSTEM_QT5KEYCHAIN` to `USE_SYSTEM_QTKEYCHAIN`. (#3103)
|
||||
- Dev: Add benchmarks that can be compiled with the `BUILD_BENCHMARKS` CMake flag. Off by default. (#3038)
|
||||
|
|
|
@ -77,7 +77,7 @@ MessagePtr IrcMessageBuilder::build()
|
|||
|
||||
void IrcMessageBuilder::addWords(const QStringList &words)
|
||||
{
|
||||
MessageColor defaultColorType = MessageColor::Text;
|
||||
MessageColor defaultColorType = this->textColor_;
|
||||
auto defaultColor = defaultColorType.getColor(*getApp()->themes);
|
||||
QColor textColor = defaultColor;
|
||||
int fg = -1;
|
||||
|
|
Loading…
Reference in a new issue