mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more.
This commit is contained in:
@ -120,7 +120,7 @@ void GeneralPane::ConnectLayout()
|
||||
#if defined(USE_ANALYTICS) && USE_ANALYTICS
|
||||
connect(&Settings::Instance(), &Settings::AnalyticsToggled, this, &GeneralPane::LoadConfig);
|
||||
connect(m_checkbox_enable_analytics, &QCheckBox::toggled, this, &GeneralPane::OnSaveConfig);
|
||||
connect(m_button_generate_new_identity, &QPushButton::pressed, this,
|
||||
connect(m_button_generate_new_identity, &QPushButton::clicked, this,
|
||||
&GeneralPane::GenerateNewIdentity);
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user