summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-05-08 09:33:23 -0400
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-21 10:56:07 -0400
commit05c26411a399d415793fcc1c729ea00f87416b46 (patch)
tree8c1c0588ef2feb45e66365010d68fbed07d442d3
parenta4de202cbd5abdf46c48663874e34bdd028b6df5 (diff)
configuration_shared: Fix blank state hiding check box
-rw-r--r--src/yuzu/configuration/configuration_shared.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configuration_shared.cpp b/src/yuzu/configuration/configuration_shared.cpp
index 54fbce53a..80637f3a2 100644
--- a/src/yuzu/configuration/configuration_shared.cpp
+++ b/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();
}