diff options
author | saturneric <[email protected]> | 2025-04-24 17:39:50 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-24 17:39:50 +0000 |
commit | 0ef4b47994487bf57be7e102a34923a4f494d0fe (patch) | |
tree | 693196bbfb7d4e40d681a86d849d964c8ae26f66 | |
parent | fix: should allow uid sign by the public key (diff) | |
download | GpgFrontend-0ef4b47994487bf57be7e102a34923a4f494d0fe.tar.gz GpgFrontend-0ef4b47994487bf57be7e102a34923a4f494d0fe.zip |
fix: tool tip base should be black
-rw-r--r-- | src/ui/GpgFrontendUIInit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/GpgFrontendUIInit.cpp b/src/ui/GpgFrontendUIInit.cpp index c084558e..03863516 100644 --- a/src/ui/GpgFrontendUIInit.cpp +++ b/src/ui/GpgFrontendUIInit.cpp @@ -151,7 +151,7 @@ void InitGpgFrontendUI(QApplication* app) { dark_palette.setColor(QPalette::WindowText, Qt::white); dark_palette.setColor(QPalette::Base, QColor(25, 25, 25)); dark_palette.setColor(QPalette::AlternateBase, QColor(53, 53, 53)); - dark_palette.setColor(QPalette::ToolTipBase, Qt::white); + dark_palette.setColor(QPalette::ToolTipBase, Qt::black); dark_palette.setColor(QPalette::ToolTipText, Qt::white); dark_palette.setColor(QPalette::Text, Qt::white); dark_palette.setColor(QPalette::Button, QColor(53, 53, 53)); |