mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix: some tooltips not being readable (#5578)
our "budget fusion palette" had the same color for the tooltip background as the tooltip text
This commit is contained in:
parent
956186d1a1
commit
03b0e4881f
|
@ -44,6 +44,7 @@
|
||||||
- Bugfix: Fixed janky selection for messages with RTL segments (selection is still wrong, but consistently wrong). (#5525)
|
- Bugfix: Fixed janky selection for messages with RTL segments (selection is still wrong, but consistently wrong). (#5525)
|
||||||
- Bugfix: Fixed tab visibility being controllable in the emote popup. (#5530)
|
- Bugfix: Fixed tab visibility being controllable in the emote popup. (#5530)
|
||||||
- Bugfix: Fixed account switch not being saved if no other settings were changed. (#5558)
|
- Bugfix: Fixed account switch not being saved if no other settings were changed. (#5558)
|
||||||
|
- Bugfix: Fixed some tooltips not being readable. (#5578)
|
||||||
- Dev: Update Windows build from Qt 6.5.0 to Qt 6.7.1. (#5420)
|
- Dev: Update Windows build from Qt 6.5.0 to Qt 6.7.1. (#5420)
|
||||||
- Dev: Update vcpkg build Qt from 6.5.0 to 6.7.0, boost from 1.83.0 to 1.85.0, openssl from 3.1.3 to 3.3.0. (#5422)
|
- Dev: Update vcpkg build Qt from 6.5.0 to 6.7.0, boost from 1.83.0 to 1.85.0, openssl from 3.1.3 to 3.3.0. (#5422)
|
||||||
- Dev: Unsingletonize `ISoundController`. (#5462)
|
- Dev: Unsingletonize `ISoundController`. (#5462)
|
||||||
|
|
|
@ -49,7 +49,7 @@ namespace {
|
||||||
dark.setColor(QPalette::Base, QColor("#333"));
|
dark.setColor(QPalette::Base, QColor("#333"));
|
||||||
dark.setColor(QPalette::AlternateBase, QColor("#444"));
|
dark.setColor(QPalette::AlternateBase, QColor("#444"));
|
||||||
dark.setColor(QPalette::ToolTipBase, Qt::white);
|
dark.setColor(QPalette::ToolTipBase, Qt::white);
|
||||||
dark.setColor(QPalette::ToolTipText, Qt::white);
|
dark.setColor(QPalette::ToolTipText, Qt::black);
|
||||||
dark.setColor(QPalette::Dark, QColor(35, 35, 35));
|
dark.setColor(QPalette::Dark, QColor(35, 35, 35));
|
||||||
dark.setColor(QPalette::Shadow, QColor(20, 20, 20));
|
dark.setColor(QPalette::Shadow, QColor(20, 20, 20));
|
||||||
dark.setColor(QPalette::Button, QColor(70, 70, 70));
|
dark.setColor(QPalette::Button, QColor(70, 70, 70));
|
||||||
|
|
Loading…
Reference in a new issue