fix icon on netplay tab

This commit is contained in:
Nayla 2023-05-27 16:03:42 -04:00 committed by GitHub
commit 9ba0ea341b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,7 +165,7 @@ void ToolBar::UpdatePausePlayButtonState(const bool playing_state)
else else
{ {
disconnect(m_pause_play_action, nullptr, nullptr, nullptr); disconnect(m_pause_play_action, nullptr, nullptr, nullptr);
m_pause_play_action->setText(tr("Play")); m_pause_play_action->setText(tr("Local Play"));
m_pause_play_action->setIcon(Resources::GetThemeIcon("play")); m_pause_play_action->setIcon(Resources::GetThemeIcon("play"));
connect(m_pause_play_action, &QAction::triggered, this, &ToolBar::PlayPressed); connect(m_pause_play_action, &QAction::triggered, this, &ToolBar::PlayPressed);
} }
@ -196,4 +196,5 @@ void ToolBar::UpdateIcons()
m_config_action->setIcon(Resources::GetThemeIcon("config")); m_config_action->setIcon(Resources::GetThemeIcon("config"));
m_controllers_action->setIcon(Resources::GetThemeIcon("classic")); m_controllers_action->setIcon(Resources::GetThemeIcon("classic"));
m_graphics_action->setIcon(Resources::GetThemeIcon("graphics")); m_graphics_action->setIcon(Resources::GetThemeIcon("graphics"));
m_start_netplay_action->setIcon(Resources::GetScaledThemeIcon("wifi"));
} }