From 1e777f425d86e057d93e040d28ddc3e22ef1d260 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Wed, 3 Apr 2024 21:53:04 +0100 Subject: [PATCH] Discord presence is now greyed out instead of invisble when unavailable to avoid the tab being potentially empty --- src/citra_qt/configuration/configure_web.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citra_qt/configuration/configure_web.cpp b/src/citra_qt/configuration/configure_web.cpp index 2c61b02dc..511a06cfe 100644 --- a/src/citra_qt/configuration/configure_web.cpp +++ b/src/citra_qt/configuration/configure_web.cpp @@ -15,7 +15,7 @@ ConfigureWeb::ConfigureWeb(QWidget* parent) ui->setupUi(this); #ifndef USE_DISCORD_PRESENCE - ui->discord_group->setVisible(false); + ui->discord_group->setEnabled(false); #endif SetConfiguration(); }