From b451019be1d255420abb2418ef845cd31acd22b3 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Mon, 20 Nov 2023 07:33:44 +0100 Subject: [PATCH] Android: enable "Toggle Comment Selection" shortcut in manifest editor Fixes: QTCREATORBUG-29818 Change-Id: I8434ea99d8f5c5dc3c0436f5313d42084aca4152 Reviewed-by: Reviewed-by: Alessandro Portale --- src/plugins/android/androidmanifesteditorfactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/android/androidmanifesteditorfactory.cpp b/src/plugins/android/androidmanifesteditorfactory.cpp index 15114918b54..93f0d9a4ea7 100644 --- a/src/plugins/android/androidmanifesteditorfactory.cpp +++ b/src/plugins/android/androidmanifesteditorfactory.cpp @@ -15,7 +15,7 @@ using namespace Android::Internal; AndroidManifestEditorFactory::AndroidManifestEditorFactory() : m_actionHandler(Constants::ANDROID_MANIFEST_EDITOR_ID, Constants::ANDROID_MANIFEST_EDITOR_CONTEXT, - TextEditor::TextEditorActionHandler::None, + TextEditor::TextEditorActionHandler::UnCommentSelection, [](Core::IEditor *editor) { return static_cast(editor)->textEditor(); }) { setId(Constants::ANDROID_MANIFEST_EDITOR_ID);