Boot2Qt: Fix menu insertion of qdb flash to device action

Change-Id: I359b4ae398337ae3edb138cca1b3bdaf5cc86424
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
hjk
2023-12-11 15:15:49 +01:00
parent a9721c5f34
commit 6c22a3ec8c

View File

@@ -84,7 +84,7 @@ void registerFlashAction(QObject *parentForAction)
ActionBuilder flashAction(parentForAction, flashActionId); ActionBuilder flashAction(parentForAction, flashActionId);
flashAction.setText(Tr::tr("Flash Boot to Qt Device")); 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); flashAction.setOnTriggered(&startFlashingWizard);
} }