From 6f2f159f5af7898d584bd63969eb1699b89b6330 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Tue, 7 Jan 2020 15:48:03 +0100 Subject: [PATCH] ProjectExplorer: Fix disappearing Qt build properties settings Change-Id: I0eb905b205af45533b1b6056c49a22e03ff4e40d Reviewed-by: hjk --- src/plugins/projectexplorer/buildpropertiessettingspage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/buildpropertiessettingspage.cpp b/src/plugins/projectexplorer/buildpropertiessettingspage.cpp index 5055fb68875..9670c193ed7 100644 --- a/src/plugins/projectexplorer/buildpropertiessettingspage.cpp +++ b/src/plugins/projectexplorer/buildpropertiessettingspage.cpp @@ -66,7 +66,7 @@ public: void apply() final { - BuildPropertiesSettings s; + BuildPropertiesSettings s = ProjectExplorerPlugin::buildPropertiesSettings(); s.separateDebugInfo = TriState::fromVariant(m_separateDebugInfoComboBox.currentData()); s.qmlDebugging = TriState::fromVariant(m_qmlDebuggingComboBox.currentData()); s.qtQuickCompiler = TriState::fromVariant(m_qtQuickCompilerComboBox.currentData());