fix: audit cleanup — themed close button, stale popup dismiss, bitfield clamp, scanner guard, process sort

This commit is contained in:
IChooseYou
2026-03-04 11:15:04 -07:00
committed by IChooseYou
parent 5944dbdc81
commit f4c7e9327d
6 changed files with 21 additions and 6 deletions

View File

@@ -95,10 +95,10 @@ void TitleBarWidget::applyTheme(const Theme& theme) {
m_btnMin->setStyleSheet(btnStyle);
m_btnMax->setStyleSheet(btnStyle);
// Close button: red hover
// Close button: themed red hover
m_btnClose->setStyleSheet(QStringLiteral(
"QToolButton { background: transparent; border: none; }"
"QToolButton:hover { background: #c42b1c; }"));
"QToolButton:hover { background: %1; }").arg(theme.indHeatHot.name()));
update();
}