Skip to content

Commit f514875

Browse files
committedSep 17, 2018
[processing] Use display name, not alg ID in undo history for in-place mode
1 parent d99d506 commit f514875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/AlgorithmExecutor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def execute_in_place_run(alg, active_layer, parameters, context=None, feedback=N
208208
try:
209209
new_feature_ids = []
210210

211-
active_layer.beginEditCommand(alg.name())
211+
active_layer.beginEditCommand(alg.displayName())
212212

213213
req = QgsFeatureRequest(QgsExpression(r"$id < 0"))
214214
req.setFlags(QgsFeatureRequest.NoGeometry)

0 commit comments

Comments
 (0)
Please sign in to comment.