From 354ccb3dde2859e50818832b2924812c6eafc95e Mon Sep 17 00:00:00 2001 From: EfesX Date: Tue, 18 Feb 2025 21:50:13 +0500 Subject: [PATCH] FIX(Client): bug with talking UI options --- src/mumble/LookConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mumble/LookConfig.cpp b/src/mumble/LookConfig.cpp index 939e4ed502..6c281dee32 100644 --- a/src/mumble/LookConfig.cpp +++ b/src/mumble/LookConfig.cpp @@ -304,7 +304,7 @@ void LookConfig::themeDirectoryChanged() { } void LookConfig::on_qcbAbbreviateChannelNames_stateChanged(int state) { - bool abbreviateNames = state == Qt::Checked; + bool abbreviateNames = (state == Qt::Checked) || (state == Qt::PartiallyChecked); // Only enable the abbreviation related settings if abbreviation is actually enabled qcbAbbreviateCurrentChannel->setEnabled(abbreviateNames);