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
parent 29ba53f6c3
commit 3529dfd691
23 changed files with 70 additions and 70 deletions

View File

@ -78,7 +78,7 @@ void Updater::OnUpdateAvailable(const NewVersionInformation& info)
layout->addWidget(update_later_check);
layout->addWidget(buttons);
connect(never_btn, &QPushButton::pressed, [dialog] {
connect(never_btn, &QPushButton::clicked, [dialog] {
Settings::Instance().SetAutoUpdateTrack(QStringLiteral(""));
dialog->reject();
});