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:
authorJacques Lucke <mail@jlucke.com>2019-05-29 13:30:30 +0300
committerJacques Lucke <mail@jlucke.com>2019-05-29 13:30:59 +0300
commitc592ebaeca7bb35cd03b3dcf5a5df65f6f073c2c (patch)
tree3140355115a97bcb36b28288f1a6b3eb8fa9eebd /source/blender/editors/animation/anim_markers.c
parente15bba38d5bba66a35d144abee1a0b14ba042484 (diff)
Markers: fix error in previous commit
Diffstat (limited to 'source/blender/editors/animation/anim_markers.c')
-rw-r--r--source/blender/editors/animation/anim_markers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c
index 44fae0b8ceb..ddc4510d6b8 100644
--- a/source/blender/editors/animation/anim_markers.c
+++ b/source/blender/editors/animation/anim_markers.c
@@ -1427,7 +1427,7 @@ static int ed_marker_rename_invoke(bContext *C, wmOperator *op, const wmEvent *e
RNA_string_set(op->ptr, "name", marker->name);
}
- return WM_operator_props_popup_confirm;
+ return WM_operator_props_popup_confirm(C, op, event);
}
static void MARKER_OT_rename(wmOperatorType *ot)