FEM: [skip ci] connect onButtonDirection() slot with clicked() signal

This commit is contained in:
wmayer
2021-02-24 21:55:51 +01:00
parent 78a9a3c2a8
commit ec2dbecac4
2 changed files with 3 additions and 3 deletions

View File

@@ -83,8 +83,8 @@ TaskFemConstraintForce::TaskFemConstraintForce(ViewProviderFemConstraintForce *C
connect(ui->spinForce, SIGNAL(valueChanged(double)),
this, SLOT(onForceChanged(double)));
connect(ui->buttonDirection, SIGNAL(pressed()),
this, SLOT(onButtonDirection()));
connect(ui->buttonDirection, SIGNAL(clicked(bool)),
this, SLOT(onButtonDirection(bool)));
connect(ui->checkReverse, SIGNAL(toggled(bool)),
this, SLOT(onCheckReverse(bool)));
connect(ui->listReferences, SIGNAL(itemClicked(QListWidgetItem*)),