mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-09 12:29:44 +00:00
Qt6: fix obsolete QPalette value
This commit is contained in:
parent
49c9c15d6c
commit
4cd7c868ad
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ ColorSchemeItem ColorScheme::GRAY = ColorSchemeItem("gray", "gray");
|
||||||
|
|
||||||
bool ColorScheme::hasDarkBackground(QWidget *widget) {
|
bool ColorScheme::hasDarkBackground(QWidget *widget) {
|
||||||
int r, g, b;
|
int r, g, b;
|
||||||
widget->palette().color(QPalette::Background).getRgb(&r, &g, &b);
|
widget->palette().color(QPalette::Window).getRgb(&r, &g, &b);
|
||||||
auto brightness = r + g + b;
|
auto brightness = r + g + b;
|
||||||
return brightness < (255*3/2);
|
return brightness < (255*3/2);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue