configuration_shared: Fix blank state hiding check box

This commit is contained in:
lat9nq 2023-05-08 09:33:23 -04:00
parent a4de202cbd
commit 05c26411a3

View File

@ -253,8 +253,7 @@ void ConfigurationShared::SetHighlight(QWidget* widget, bool highlighted) {
widget->setStyleSheet(QStringLiteral("QWidget#%1 { background-color:rgba(0,203,255,0.5) }")
.arg(widget->objectName()));
} else {
widget->setStyleSheet(QStringLiteral("QWidget#%1 { background-color:rgba(0,0,0,0) }")
.arg(widget->objectName()));
widget->setStyleSheet(QStringLiteral(""));
}
widget->show();
}