diff --git a/src/plugins/debugger/analyzer/analyzericons.h b/src/plugins/debugger/analyzer/analyzericons.h index ba0d7469d2d..3430188d151 100644 --- a/src/plugins/debugger/analyzer/analyzericons.h +++ b/src/plugins/debugger/analyzer/analyzericons.h @@ -31,6 +31,10 @@ namespace Debugger { namespace Icons { const Utils::Icon ANALYZER_CONTROL_START({ + {QLatin1String(":/core/images/run_small.png"), Utils::Theme::IconsRunColor}, + {QLatin1String(":/images/analyzer_overlay_small.png"), Utils::Theme::PanelTextColorMid}}, + Utils::Icon::MenuTintedStyle); +const Utils::Icon ANALYZER_CONTROL_START_TOOLBAR({ {QLatin1String(":/core/images/run_small.png"), Utils::Theme::IconsRunToolBarColor}, {QLatin1String(":/images/analyzer_overlay_small.png"), Utils::Theme::IconsBaseColor}}); const Utils::Icon MODE_ANALYZE_CLASSIC( diff --git a/src/plugins/debugger/analyzer/analyzerruncontrol.cpp b/src/plugins/debugger/analyzer/analyzerruncontrol.cpp index 18e74abe185..b72d5998497 100644 --- a/src/plugins/debugger/analyzer/analyzerruncontrol.cpp +++ b/src/plugins/debugger/analyzer/analyzerruncontrol.cpp @@ -42,7 +42,7 @@ namespace Debugger { AnalyzerRunControl::AnalyzerRunControl(RunConfiguration *runConfiguration, Core::Id runMode) : RunControl(runConfiguration, runMode) { - setIcon(Icons::ANALYZER_CONTROL_START); + setIcon(Icons::ANALYZER_CONTROL_START_TOOLBAR); } } // namespace Debugger diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 3707aec9936..d908de63a62 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -3569,7 +3569,7 @@ void registerToolbar(const QByteArray &perspectiveId, const ToolbarDescription & QAction *createStartAction() { auto action = new QAction(DebuggerMainWindow::tr("Start"), DebuggerPlugin::instance()); - action->setIcon(Icons::ANALYZER_CONTROL_START.icon()); + action->setIcon(Icons::ANALYZER_CONTROL_START_TOOLBAR.icon()); action->setEnabled(true); return action; }