Qt: Fixed behaviour of buttons by connecting functors to correct signals

Following screens got fixes:
- Configure/Debug
- Configure/Input
This commit is contained in:
Silent 2019-07-22 23:28:10 +02:00 committed by fearlessTobi
parent 8ae3b5f4de
commit 70c839c55d
7 changed files with 21 additions and 21 deletions

View file

@ -101,7 +101,7 @@ ConfigureInputSimple::ConfigureInputSimple(QWidget* parent)
connect(ui->profile_combobox, QOverload<int>::of(&QComboBox::currentIndexChanged), this,
&ConfigureInputSimple::OnSelectProfile);
connect(ui->profile_configure, &QPushButton::pressed, this, &ConfigureInputSimple::OnConfigure);
connect(ui->profile_configure, &QPushButton::clicked, this, &ConfigureInputSimple::OnConfigure);
LoadConfiguration();
}