From f60b64106632c6d94f995f5d058886ec7f92783d Mon Sep 17 00:00:00 2001 From: Sami Shalayel Date: Mon, 6 Jan 2025 08:11:16 +0100 Subject: [PATCH] Revert "Enable qmlls by default" This reverts commit ee8ad68f5b31b9b27816f7fe6337fbeec6a1563a. Reason for revert: The qmlls integration in 15.0 is not working out of the box, like Qt examples have a lot of bogus warnings when opened with qmlls, for example. Change-Id: I49a2cd21e66afaf78d94a1e4d100f6e8862b9980 Reviewed-by: Eike Ziller Reviewed-by: David Schulz --- src/plugins/qmljseditor/qmljseditorsettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmljseditor/qmljseditorsettings.cpp b/src/plugins/qmljseditor/qmljseditorsettings.cpp index da43798fec6..8acb3e9ddb3 100644 --- a/src/plugins/qmljseditor/qmljseditorsettings.cpp +++ b/src/plugins/qmljseditor/qmljseditorsettings.cpp @@ -222,7 +222,7 @@ QmlJsEditingSettings::QmlJsEditingSettings() const Key group = QmlJSEditor::Constants::SETTINGS_CATEGORY_QML; useQmlls.setSettingsKey(group, USE_QMLLS); - useQmlls.setDefaultValue(true); + useQmlls.setDefaultValue(false); useQmlls.setLabelText(Tr::tr("Turn on")); enableContextPane.setSettingsKey(group, QML_CONTEXTPANE_KEY);