Uppercase literal suffix

This commit is contained in:
Jonas Kvinge
2021-06-20 23:49:04 +02:00
parent a83f174e1a
commit 3a3305c020
12 changed files with 22 additions and 22 deletions

View File

@@ -154,7 +154,7 @@ QColor StyleHelper::borderColor(bool lightColored) {
QColor StyleHelper::toolBarBorderColor() {
const QColor base = baseColor();
return QColor::fromHsv(base.hue(), base.saturation(), clamp(base.value() * 0.80f));
return QColor::fromHsv(base.hue(), base.saturation(), clamp(base.value() * 0.80F));
}