mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more.
This commit is contained in:
@ -128,7 +128,7 @@ void NetPlayBrowser::ConnectWidgets()
|
||||
|
||||
connect(m_button_box, &QDialogButtonBox::accepted, this, &NetPlayBrowser::accept);
|
||||
connect(m_button_box, &QDialogButtonBox::rejected, this, &NetPlayBrowser::reject);
|
||||
connect(m_button_refresh, &QPushButton::pressed, this, &NetPlayBrowser::Refresh);
|
||||
connect(m_button_refresh, &QPushButton::clicked, this, &NetPlayBrowser::Refresh);
|
||||
|
||||
connect(m_radio_all, &QRadioButton::toggled, this, &NetPlayBrowser::Refresh);
|
||||
connect(m_radio_private, &QRadioButton::toggled, this, &NetPlayBrowser::Refresh);
|
||||
|
Reference in New Issue
Block a user