mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Merge branch 'master' into decrypt-sidebar
This commit is contained in:
commit
69b0b68f92
2 changed files with 7 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
|||
- Fix Binding restorMode flooding logs on Qt 5.14.2+
|
||||
- Fix with some qml styles hidden menu items leave empty space
|
||||
- Fix encrypted messages not showing a user in the sidebar
|
||||
- Fix hangs when generating colors with some system theme color schemes (#172)
|
||||
|
||||
## [0.7.0] -- 2020-04-19
|
||||
|
||||
|
|
|
@ -541,6 +541,7 @@ utils::generateContrastingHexColor(const QString &input, const QString &backgrou
|
|||
// If the contrast doesn't meet our criteria,
|
||||
// try again and again until they do by modifying first
|
||||
// the lightness and then the saturation of the color.
|
||||
int iterationCount = 9;
|
||||
while (contrast < 5) {
|
||||
// if our lightness is at it's bounds, try changing
|
||||
// saturation instead.
|
||||
|
@ -587,6 +588,11 @@ utils::generateContrastingHexColor(const QString &input, const QString &backgrou
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
// don't loop forever, just give up at some point!
|
||||
// Someone smart may find a better solution
|
||||
if (--iterationCount < 0)
|
||||
break;
|
||||
}
|
||||
|
||||
// get the hex value of the generated color.
|
||||
|
|
Loading…
Reference in a new issue