Skip to content

Commit

Permalink
Fix the delete selected feature(s) action
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Jul 7, 2023
1 parent 22eadd6 commit fae0dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qml/FeatureListForm.qml
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ Rectangle {
}

onMultiDeleteClicked: {
if( trackingModel.featureInTracking(featureForm.selection.focusedLayer, featureForm.selection.model.selectedFeatures) )
if( trackingModel.featuresInTracking(featureForm.selection.focusedLayer, featureForm.selection.model.selectedFeatures) )
{
displayToast( qsTr( "A number of features are being tracked, stop tracking to delete those" ) )
}
Expand Down

0 comments on commit fae0dd9

Please sign in to comment.