From 03b0e4881feb6dc7893c45d986406df198d15611 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 31 Aug 2024 12:42:12 +0200 Subject: [PATCH] fix: some tooltips not being readable (#5578) our "budget fusion palette" had the same color for the tooltip background as the tooltip text --- CHANGELOG.md | 1 + src/RunGui.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0137122b..939a46754 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ - 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 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 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) diff --git a/src/RunGui.cpp b/src/RunGui.cpp index 92da3dbf4..ff77d6c47 100644 --- a/src/RunGui.cpp +++ b/src/RunGui.cpp @@ -49,7 +49,7 @@ namespace { dark.setColor(QPalette::Base, QColor("#333")); dark.setColor(QPalette::AlternateBase, QColor("#444")); 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::Shadow, QColor(20, 20, 20)); dark.setColor(QPalette::Button, QColor(70, 70, 70));