WorkoutWizard - Fix copy/paste error

[skip ci]
Reported at the users forum
This commit is contained in:
Alejandro Martinez
2025-10-10 18:10:52 -03:00
parent f7a2aede22
commit 45b366b68c

View File

@@ -97,7 +97,7 @@ WorkoutEditorBase::WorkoutEditorBase(QStringList &colms, QWidget *parent) :QFram
row2Layout->addWidget(addButton);
QPushButton *insertButton = new QPushButton();
insertButton->setText(tr("Insert"));
insertButton->setToolTip(tr("Add a Lap below the highlighted row"));
insertButton->setToolTip(tr("Add a Row above the highlighted row"));
connect(insertButton,SIGNAL(clicked()),this,SLOT(insertButtonClicked()));
row2Layout->addWidget(insertButton);
QPushButton *lapButton = new QPushButton();