Connect numerous QPushButtons to use clicked signal instead of pressed. This unifies UI behaviour more.

This commit is contained in:
Silent 2019-07-24 00:18:58 +02:00
commit 3529dfd691
No known key found for this signature in database
GPG key ID: AE53149BB0C45AF1
23 changed files with 70 additions and 70 deletions

View file

@ -80,6 +80,6 @@ void CheatWarningWidget::Update(bool running)
void CheatWarningWidget::ConnectWidgets()
{
connect(m_config_button, &QPushButton::pressed, this,
connect(m_config_button, &QPushButton::clicked, this,
&CheatWarningWidget::OpenCheatEnableSettings);
}