mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
1dd4b09990
## Issue being fixed or feature implemented fix 3 gui issues reported about beta2 ## What was done? pls see individual commits ## How Has This Been Tested? to testad0c0eb591
(there were no css issues on my machine with locally compiled binaries): compile, run to test09800cff8f
: run beta2 guix compiled binaries with css from this PR e.g. on macos: `/path/to/Dash-Qt.app/Contents/MacOS/Dash-Qt --regtest --debug-ui --custom-css-dir=/path/to/dash/src/qt/res/css` before139d70701c
: <img width="224" alt="Screenshot 2023-09-30 at 22 02 32" src="https://github.com/dashpay/dash/assets/1935069/b7a26ae9-f87f-4dde-b1f6-9eb796c22495"> after139d70701c
: <img width="229" alt="Screenshot 2023-09-30 at 22 02 59" src="https://github.com/dashpay/dash/assets/1935069/57d92e97-b25d-4035-9d1b-da373e51a574"> ## Breaking Changes n/a ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
11 lines
609 B
Diff
11 lines
609 B
Diff
--- old/qtbase/src/widgets/styles/qstylesheetstyle.cpp
|
|
+++ new/qtbase/src/widgets/styles/qstylesheetstyle.cpp
|
|
@@ -1465,7 +1465,6 @@ void QRenderRule::configurePalette(QPalette *p, QPalette::ColorGroup cg, const Q
|
|
p->setBrush(cg, w->foregroundRole(), pal->foreground);
|
|
p->setBrush(cg, QPalette::WindowText, pal->foreground);
|
|
p->setBrush(cg, QPalette::Text, pal->foreground);
|
|
- p->setBrush(cg, QPalette::PlaceholderText, pal->foreground);
|
|
}
|
|
if (pal->selectionBackground.style() != Qt::NoBrush)
|
|
p->setBrush(cg, QPalette::Highlight, pal->selectionBackground);
|