diff --git a/src/mumble/LookConfig.cpp b/src/mumble/LookConfig.cpp index 50c11ab455..d00f495ac4 100644 --- a/src/mumble/LookConfig.cpp +++ b/src/mumble/LookConfig.cpp @@ -299,7 +299,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);