fix: Found and fix review mistakes

This commit is contained in:
Petr Mironychev
2026-07-02 22:26:07 +02:00
parent c070d65366
commit 35bbaa1af0
139 changed files with 2032 additions and 1573 deletions

View File

@@ -43,10 +43,10 @@ QLabel *makeSectionHeader(const QString &title, QWidget *parent)
header->setAutoFillBackground(true);
const QColor base = Utils::creatorColor(Utils::Theme::BackgroundColorNormal);
const QColor mid = Utils::creatorColor(Utils::Theme::PanelTextColorMid);
header->setStyleSheet(
QStringLiteral("QLabel { background:%1; border-top:1px solid %2;"
" border-bottom:1px solid %2; }")
.arg(cssColor(mix(base, mid, 0.16)), cssColor(mix(base, mid, 0.30))));
header->setStyleSheet(QStringLiteral(
"QLabel { background:%1; border-top:1px solid %2;"
" border-bottom:1px solid %2; }")
.arg(cssColor(mix(base, mid, 0.16)), cssColor(mix(base, mid, 0.30))));
return header;
}