From 3f3ba92fe99935dd44408076511e5d6fde603c74 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Mon, 15 Oct 2018 14:52:47 +0200 Subject: [PATCH] Fix debugger "step into" icon Fix-up of 3b5ecac238b87615b44b27375cef0b4f1d4637e4 Change-Id: I0c9197e4c1cf62ccdb57710af00189b32c850fd5 Reviewed-by: hjk --- src/plugins/debugger/debuggerplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index eb194281d9e..b04ff48f36c 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1245,7 +1245,7 @@ bool DebuggerPluginPrivate::initialize(const QStringList &arguments, cmd->setAttribute(Command::CA_Hide); cmd->setAttribute(Command::CA_UpdateText); debugMenu->addAction(cmd); - m_stepAction.setIcon(Icons::STEP_OVER.icon()); + m_stepAction.setIcon(Icons::STEP_INTO.icon()); connect(&m_stepAction, &QAction::triggered, this, [] { if (DebuggerEngine *engine = EngineManager::currentEngine()) { engine->handleExecStep();