aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAaron Barany <akb825@gmail.com>2019-05-16 21:36:46 -0700
committerAaron Barany <akb825@gmail.com>2019-05-24 08:03:12 +0000
commit0131439288fa4210a73af4489ab23704a57ca346 (patch)
treeee29d5a71ec739fe8a015692a932518a5c9569f5 /src
parentfd24586421d837ec16fb4511ce5f1fe299734d12 (diff)
CMake: don't disable widgets on configuration error
If the configuration failure was caused by an incorrect option, you want to be able to fully use the UI to fix the issue. Change-Id: I3048b1f6e0b4d88e90433df9a36ca18fa72c03c6 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakebuildsettingswidget.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildsettingswidget.cpp b/src/plugins/cmakeprojectmanager/cmakebuildsettingswidget.cpp
index 3ee12eeb3b..192d3b0af5 100644
--- a/src/plugins/cmakeprojectmanager/cmakebuildsettingswidget.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakebuildsettingswidget.cpp
@@ -349,12 +349,6 @@ void CMakeBuildSettingsWidget::setError(const QString &message)
m_errorMessageLabel->setVisible(showError);
m_errorMessageLabel->setText(message);
m_errorMessageLabel->setToolTip(message);
-
- m_editButton->setEnabled(!showError);
- m_unsetButton->setEnabled(!showError);
- m_resetButton->setEnabled(!showError);
- m_showAdvancedCheckBox->setEnabled(!showError);
- m_filterEdit->setEnabled(!showError);
}
void CMakeBuildSettingsWidget::setWarning(const QString &message)