Browse Source

configuration_shared: Fix blank state hiding check box

nce_cpp
lat9nq 3 years ago
parent
commit
2760998b49
  1. 3
      src/yuzu/configuration/configuration_shared.cpp

3
src/yuzu/configuration/configuration_shared.cpp

@ -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();
}

Loading…
Cancel
Save