diff options
author | lat9nq <lat9nq@virginia.edu> | 2020-07-14 03:36:31 +0200 |
---|---|---|
committer | lat9nq <lat9nq@virginia.edu> | 2020-07-19 19:26:55 +0200 |
commit | b79a6ebf9c45f0a3147073a3b530fa43b9344842 (patch) | |
tree | 99cc8c6a52d15025fcaac6bf23675a9cc0df9bf5 | |
parent | configuration_shared: Better use global text (diff) | |
download | yuzu-b79a6ebf9c45f0a3147073a3b530fa43b9344842.tar yuzu-b79a6ebf9c45f0a3147073a3b530fa43b9344842.tar.gz yuzu-b79a6ebf9c45f0a3147073a3b530fa43b9344842.tar.bz2 yuzu-b79a6ebf9c45f0a3147073a3b530fa43b9344842.tar.lz yuzu-b79a6ebf9c45f0a3147073a3b530fa43b9344842.tar.xz yuzu-b79a6ebf9c45f0a3147073a3b530fa43b9344842.tar.zst yuzu-b79a6ebf9c45f0a3147073a3b530fa43b9344842.zip |
-rw-r--r-- | src/yuzu/configuration/configuration_shared.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configuration_shared.cpp b/src/yuzu/configuration/configuration_shared.cpp index 0c881cf7d..28b655222 100644 --- a/src/yuzu/configuration/configuration_shared.cpp +++ b/src/yuzu/configuration/configuration_shared.cpp @@ -89,11 +89,11 @@ void ConfigurationShared::SetPerGameSetting( void ConfigurationShared::SetHighlight(QWidget* widget, const std::string& name, bool highlighted) { if (highlighted) { widget->setStyleSheet( - QStringLiteral("QWidget#%1 { border:2px solid;border-color:rgba(0,203,255,0.5) }") + QStringLiteral("QWidget#%1 { background-color:rgba(0,203,255,0.5) }") .arg(QString::fromStdString(name))); } else { widget->setStyleSheet( - QStringLiteral("QWidget#%1 { border:2px solid;border-color:rgba(0,0,0,0) }") + QStringLiteral("QWidget#%1 { background-color:rgba(0,0,0,0) }") .arg(QString::fromStdString(name))); } widget->show(); |