aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/boot2qt
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-12-11 15:15:49 +0100
committerhjk <hjk@qt.io>2023-12-11 14:22:11 +0000
commit6c22a3ec8c8a3cd84be82c8051a3831cd67ec352 (patch)
treef75a95e8e6324e7442acd2c3f8dab28b96c33f70 /src/plugins/boot2qt
parenta9721c5f34669d4dabde5a968c79bd6d0d530397 (diff)
Boot2Qt: Fix menu insertion of qdb flash to device action
Change-Id: I359b4ae398337ae3edb138cca1b3bdaf5cc86424 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/boot2qt')
-rw-r--r--src/plugins/boot2qt/qdbplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/boot2qt/qdbplugin.cpp b/src/plugins/boot2qt/qdbplugin.cpp
index 35e1c71514..bd509d40fa 100644
--- a/src/plugins/boot2qt/qdbplugin.cpp
+++ b/src/plugins/boot2qt/qdbplugin.cpp
@@ -84,7 +84,7 @@ void registerFlashAction(QObject *parentForAction)
ActionBuilder flashAction(parentForAction, flashActionId);
flashAction.setText(Tr::tr("Flash Boot to Qt Device"));
- flashAction.setContainer(Core::Constants::G_TOOLS_DEBUG, flashActionId);
+ flashAction.setContainer(Core::Constants::M_TOOLS, flashActionId);
flashAction.setOnTriggered(&startFlashingWizard);
}