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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2010-03-12 15:09:06 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-03-12 15:09:06 +0300
commit1337867378f3f0990bea74993564f8864f395520 (patch)
tree109d2d44b562dbdb5d8cadf027f1a32f2f4a58d1 /source/blender/editors/util
parent4faedb3d91b8d57396c633c3f8b4c9d30bc8f2c4 (diff)
Fix #21183: info stats not updated immediately on undo.
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/undo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/util/undo.c b/source/blender/editors/util/undo.c
index cf60490055f..46dc3a6cf8d 100644
--- a/source/blender/editors/util/undo.c
+++ b/source/blender/editors/util/undo.c
@@ -140,6 +140,8 @@ static int ed_undo_step(bContext *C, int step, const char *undoname)
undo_editmode_name(C, undoname);
else
undo_editmode_step(C, step);
+
+ WM_event_add_notifier(C, NC_GEOM|ND_DATA, NULL);
}
}
else {