From 9fd7da59b1a948c44fe71bcfae67d547da1a7f6d Mon Sep 17 00:00:00 2001 From: aldelaro5 Date: Mon, 8 Oct 2018 21:09:13 -0400 Subject: [PATCH] Qt/debugger: reorder the PC toolbar icons to their correct buttons --- Source/Core/DolphinQt/ToolBar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt/ToolBar.cpp b/Source/Core/DolphinQt/ToolBar.cpp index 860da920df..d53326b79f 100644 --- a/Source/Core/DolphinQt/ToolBar.cpp +++ b/Source/Core/DolphinQt/ToolBar.cpp @@ -167,8 +167,8 @@ void ToolBar::UpdateIcons() m_step_over_action->setIcon(Resources::GetScaledThemeIcon("debugger_step_over")); m_step_out_action->setIcon(Resources::GetScaledThemeIcon("debugger_step_out")); m_skip_action->setIcon(Resources::GetScaledThemeIcon("debugger_skip")); - m_show_pc_action->setIcon(Resources::GetScaledThemeIcon("debugger_set_pc")); - m_set_pc_action->setIcon(Resources::GetScaledThemeIcon("debugger_show_pc")); + m_show_pc_action->setIcon(Resources::GetScaledThemeIcon("debugger_show_pc")); + m_set_pc_action->setIcon(Resources::GetScaledThemeIcon("debugger_set_pc")); m_open_action->setIcon(Resources::GetScaledThemeIcon("open")); m_refresh_action->setIcon(Resources::GetScaledThemeIcon("refresh"));