From cbc4ee0af6cde378ebb8f17158ae476b335497bd Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 25 Oct 2016 14:30:51 +0200 Subject: [PATCH] AutoTest: Fix enabled state of global Tests menu If tests are running the Tests menu's (current) items are all disabled which led to having the menu disabled as well. Ensure to have the menu enabled regardless the sub items' state. Change-Id: I561f1eb75637f03a27df012129455e06be38ea87 Reviewed-by: David Schulz --- src/plugins/autotest/autotestplugin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/autotest/autotestplugin.cpp b/src/plugins/autotest/autotestplugin.cpp index abde0d4d69a..976bee11c85 100644 --- a/src/plugins/autotest/autotestplugin.cpp +++ b/src/plugins/autotest/autotestplugin.cpp @@ -95,6 +95,7 @@ void AutotestPlugin::initializeMenuEntries() { ActionContainer *menu = ActionManager::createMenu(Constants::MENU_ID); menu->menu()->setTitle(tr("&Tests")); + menu->setOnAllDisabledBehavior(ActionContainer::Show); QAction *action = new QAction(tr("Run &All Tests"), this); Command *command = ActionManager::registerAction(action, Constants::ACTION_RUN_ALL_ID);