Sketcher: Rename 'FocusOut' signal to 'TabOrEnterPressed'

This commit is contained in:
PaddleStroke
2024-03-18 10:02:00 +01:00
parent 4ced18c419
commit 3c87ff59ee
3 changed files with 13 additions and 10 deletions

View File

@@ -162,7 +162,7 @@ bool SketcherToolDefaultWidget::eventFilter(QObject* object, QEvent* event)
if (ke->key() == Qt::Key_Tab || ke->key() == Qt::Key_Return) {
for (int i = 0; i < nParameters; i++) {
if (object == getParameterSpinBox(i)) {
signalParameterFocusOut(i);
signalParameterTabOrEnterPressed(i);
return true;
}
}