From ecb2e8ff3539a3cf954f07ed92ef3b7aa9e72233 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/lime_qt/configuration/configure_web.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lime_qt/configuration/configure_web.cpp b/src/lime_qt/configuration/configure_web.cpp index 3413eaa23..a707abd62 100644 --- a/src/lime_qt/configuration/configure_web.cpp +++ b/src/lime_qt/configuration/configure_web.cpp @@ -16,7 +16,7 @@ ConfigureWeb::ConfigureWeb(QWidget* parent) ui->setupUi(this); #ifndef USE_DISCORD_PRESENCE - ui->discord_group->setVisible(false); + ui->discord_group->setEnabled(false); #endif SetConfiguration(); }