From 5c2e03380f7a23b8dfe8f6d17946b167a0a99ae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Tue, 26 Sep 2017 17:42:51 +0200 Subject: [PATCH] Qt: Always show the stop button in the toolbar Reverts a previous Qt change that was likely not intended to match WX. --- Source/Core/DolphinQt2/ToolBar.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/DolphinQt2/ToolBar.cpp b/Source/Core/DolphinQt2/ToolBar.cpp index ed563532b4..fe13a74c90 100644 --- a/Source/Core/DolphinQt2/ToolBar.cpp +++ b/Source/Core/DolphinQt2/ToolBar.cpp @@ -35,7 +35,6 @@ void ToolBar::OnEmulationStateChanged(Core::State state) { bool running = state != Core::State::Uninitialized; m_stop_action->setEnabled(running); - m_stop_action->setVisible(running); m_fullscreen_action->setEnabled(running); m_screenshot_action->setEnabled(running); @@ -62,7 +61,7 @@ void ToolBar::MakeActions() m_controllers_action = AddAction(this, tr("Controllers"), this, &ToolBar::ControllersPressed); m_controllers_action->setEnabled(true); - // Ensure every button has the same width + // Ensure every button has about the same width std::vector items; for (const auto& action : {m_open_action, m_play_action, m_pause_action, m_stop_action, m_stop_action, m_fullscreen_action, m_screenshot_action,