diff --git a/Source/Core/DolphinQt/ToolBar.cpp b/Source/Core/DolphinQt/ToolBar.cpp index 4c044d5d65..0790bfe7e2 100644 --- a/Source/Core/DolphinQt/ToolBar.cpp +++ b/Source/Core/DolphinQt/ToolBar.cpp @@ -118,12 +118,9 @@ void ToolBar::MakeActions() addSeparator(); - m_pause_play_action = addAction(tr("Local Play"), this, &ToolBar::PlayPressed); - m_start_netplay_action = addAction(tr("Online Play"), this, &ToolBar::StartNetPlayPressed); + m_pause_play_action = addAction(tr("Play"), this, &ToolBar::PlayPressed); + m_stop_action = addAction(tr("Stop"), this, &ToolBar::StopPressed); - - addSeparator(); - m_fullscreen_action = addAction(tr("FullScr"), this, &ToolBar::FullScreenPressed); m_screenshot_action = addAction(tr("ScrShot"), this, &ToolBar::ScreenShotPressed); @@ -165,8 +162,8 @@ void ToolBar::UpdatePausePlayButtonState(const bool playing_state) else { disconnect(m_pause_play_action, nullptr, nullptr, nullptr); - m_pause_play_action->setText(tr("Local Play")); - m_pause_play_action->setIcon(Resources::GetScaledThemeIcon("play")); + m_pause_play_action->setText(tr("Play")); + m_pause_play_action->setIcon(Resources::GetThemeIcon("play")); connect(m_pause_play_action, &QAction::triggered, this, &ToolBar::PlayPressed); } } @@ -196,5 +193,4 @@ void ToolBar::UpdateIcons() m_config_action->setIcon(Resources::GetThemeIcon("config")); m_controllers_action->setIcon(Resources::GetThemeIcon("classic")); m_graphics_action->setIcon(Resources::GetThemeIcon("graphics")); - m_start_netplay_action->setIcon(Resources::GetScaledThemeIcon("wifi")); }