Skip to content

Commit

Permalink
Merge pull request #54901 from elpaso/bugfix-gh54501-cad-floater-regr…
Browse files Browse the repository at this point in the history
…ession-followup

Fix angle constraint in floater
  • Loading branch information
elpaso committed Oct 11, 2023
2 parents c76b86e + ad4dcce commit f8edf72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsadvanceddigitizingfloater.cpp
Expand Up @@ -493,7 +493,7 @@ void QgsAdvancedDigitizingFloater::focusOnAngle()
{
if ( mActive )
{
const QString cleanedInputValue { QgsAdvancedDigitizingDockWidget::CadConstraint::removeSuffix( mDistanceLineEdit->text(), Qgis::CadConstraintType::Angle ) };
const QString cleanedInputValue { QgsAdvancedDigitizingDockWidget::CadConstraint::removeSuffix( mAngleLineEdit->text(), Qgis::CadConstraintType::Angle ) };
mAngleLineEdit->setText( cleanedInputValue );
mAngleLineEdit->setFocus();
mAngleLineEdit->selectAll();
Expand Down

0 comments on commit f8edf72

Please sign in to comment.