mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
fix icon on netplay tab
This commit is contained in:
parent
d2a530d487
commit
9ba0ea341b
1 changed files with 2 additions and 1 deletions
|
@ -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"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue