mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Fixed SplitInput placeholder color (#3606)
This commit is contained in:
parent
980a3e1be4
commit
5a89acbe82
|
@ -102,6 +102,7 @@
|
||||||
- Bugfix: Disabled /popout and /streamlink from working in non-twitch channels (e.g. /whispers) when supplied no arguments. (#3541)
|
- Bugfix: Disabled /popout and /streamlink from working in non-twitch channels (e.g. /whispers) when supplied no arguments. (#3541)
|
||||||
- Bugfix: Fixed automod and unban messages showing when moderation actions were disabled (#3548)
|
- Bugfix: Fixed automod and unban messages showing when moderation actions were disabled (#3548)
|
||||||
- Bugfix: Fixed crash when rendering a highlight inside of a sub message, with sub message highlights themselves turned off. (#3556)
|
- Bugfix: Fixed crash when rendering a highlight inside of a sub message, with sub message highlights themselves turned off. (#3556)
|
||||||
|
- BugFix: Fixed SplitInput placeholder color. (#3606)
|
||||||
- Dev: Batch checking live status for channels with live notifications that aren't connected. (#3442)
|
- Dev: Batch checking live status for channels with live notifications that aren't connected. (#3442)
|
||||||
- Dev: Add GitHub action to test builds without precompiled headers enabled. (#3327)
|
- 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: Renamed CMake's build option `USE_SYSTEM_QT5KEYCHAIN` to `USE_SYSTEM_QTKEYCHAIN`. (#3103)
|
||||||
|
|
|
@ -154,10 +154,10 @@ void SplitInput::themeChangedEvent()
|
||||||
this->updateEmoteButton();
|
this->updateEmoteButton();
|
||||||
this->ui_.textEditLength->setPalette(palette);
|
this->ui_.textEditLength->setPalette(palette);
|
||||||
|
|
||||||
|
this->ui_.textEdit->setStyleSheet(this->theme->splits.input.styleSheet);
|
||||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 12, 0))
|
||||||
this->ui_.textEdit->setPalette(placeholderPalette);
|
this->ui_.textEdit->setPalette(placeholderPalette);
|
||||||
#endif
|
#endif
|
||||||
this->ui_.textEdit->setStyleSheet(this->theme->splits.input.styleSheet);
|
|
||||||
|
|
||||||
this->ui_.hbox->setMargin(
|
this->ui_.hbox->setMargin(
|
||||||
int((this->theme->isLightTheme() ? 4 : 2) * this->scale()));
|
int((this->theme->isLightTheme() ? 4 : 2) * this->scale()));
|
||||||
|
|
Loading…
Reference in a new issue