Skip to content

Commit

Permalink
Address review
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jul 7, 2023
1 parent ace921d commit 6ab742b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qml/qgismobileapp.qml
Original file line number Diff line number Diff line change
Expand Up @@ -2461,14 +2461,14 @@ ApplicationWindow {
featureForm.state = "FeatureList"
if (featureForm.model.canDuplicateSelection) {
if (featureForm.selection.model.duplicateFeature(featureForm.selection.focusedLayer,featureForm.selection.focusedFeature)) {
displayToast(qsTr("Successfully duplicated feature"))
displayToast(qsTr('Successfully duplicated feature'))

featureForm.selection.focusedItem = -1
moveFeaturesToolbar.initializeMoveFeatures()
return;
}
}
displayToast(qsTr( "Feature duplication not available" ))
displayToast(qsTr('Feature duplication not available'))
}
}
}
Expand Down

0 comments on commit 6ab742b

Please sign in to comment.