Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Fog <tintwotin>2020-05-29 16:53:52 +0300
committerHans Goudey <h.goudey@me.com>2020-05-29 16:53:52 +0300
commit67795c90fcd226cdb5255349e3af304eecd3a94c (patch)
tree18dd0a80078e75d0593e690c9637df14d18ff7f7
parentd1bc233ffeff55568957f15ee129c3cbcb62bdf1 (diff)
VSE: Remove delete confirmation pop-up
It is not needed with the current undo system. Differential Revision: https://developer.blender.org/D7807
-rw-r--r--source/blender/editors/space_sequencer/sequencer_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_edit.c b/source/blender/editors/space_sequencer/sequencer_edit.c
index d80614e0440..232bb1d66e8 100644
--- a/source/blender/editors/space_sequencer/sequencer_edit.c
+++ b/source/blender/editors/space_sequencer/sequencer_edit.c
@@ -2508,7 +2508,7 @@ static int sequencer_delete_invoke(bContext *C, wmOperator *op, const wmEvent *e
}
}
- return WM_operator_confirm(C, op, event);
+ return sequencer_delete_exec(C, op);
}
void SEQUENCER_OT_delete(wmOperatorType *ot)