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
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2005-10-24 13:00:33 +0400
committerTon Roosendaal <ton@blender.org>2005-10-24 13:00:33 +0400
commit6181a5ad4102df5830c117cc53f7b12d28b7ea74 (patch)
treef253fe0af5cf8077380d00bd563cc687e0915f33 /source
parentec58f413b1c77bcaa0ad0db4f751e75753cb5b03 (diff)
Bugfix (based on user mailing me): In editmode, "remove doubles" crashes
when it uses subsurf display. Was missing a DAG update.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/buttons_editing.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/buttons_editing.c b/source/blender/src/buttons_editing.c
index c774b50d30e..5d4f0ad3dde 100644
--- a/source/blender/src/buttons_editing.c
+++ b/source/blender/src/buttons_editing.c
@@ -3008,6 +3008,7 @@ void do_meshbuts(unsigned short event)
break;
case B_REMDOUB:
notice("Removed: %d", removedoublesflag(1, G.scene->toolsettings->doublimit));
+ DAG_object_flush_update(G.scene, ob, OB_RECALC_DATA);
allqueue(REDRAWVIEW3D, 0);
BIF_undo_push("Rem Doubles");
break;