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:
authorCampbell Barton <ideasman42@gmail.com>2019-08-02 17:07:32 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-08-02 17:12:55 +0300
commite5a5d28c3e3ccd574163bfac37372fbcabfa6f75 (patch)
tree0e1681585b4b4bb92e0f77bd072253f5b23853be /source/blender/editors/sculpt_paint/paint_curve_undo.c
parent05226e1512cbe53505dac65a21a184009963672b (diff)
Fix T67670: Sculpt doesn't mark the file as modified
Was also an issue for texture & paint curve.
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_curve_undo.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_curve_undo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_curve_undo.c b/source/blender/editors/sculpt_paint/paint_curve_undo.c
index 7e283274383..bd62a59e73f 100644
--- a/source/blender/editors/sculpt_paint/paint_curve_undo.c
+++ b/source/blender/editors/sculpt_paint/paint_curve_undo.c
@@ -168,6 +168,7 @@ void ED_paintcurve_undo_push_end(void)
{
UndoStack *ustack = ED_undo_stack_get();
BKE_undosys_step_push(ustack, NULL, NULL);
+ WM_file_tag_modified();
}
/** \} */