From 5414bca7f7edd22e152b5798eba34d26be5073be Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Tue, 3 Jan 2006 20:26:24 +0000 Subject: [PATCH] Bugfix #3643 Editmode mesh: after an unhide ("reveal") the countall() needed to be called. This caused for example extrude not to work when all was hidden. --- source/blender/src/editmesh_mods.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/src/editmesh_mods.c b/source/blender/src/editmesh_mods.c index 2d1d20c6b8e..eda53fe0edc 100644 --- a/source/blender/src/editmesh_mods.c +++ b/source/blender/src/editmesh_mods.c @@ -1472,7 +1472,8 @@ void reveal_mesh(void) EM_fgon_flags(); // redo flags and indices for fgons EM_selectmode_flush(); - + countall(); + allqueue(REDRAWVIEW3D, 0); DAG_object_flush_update(G.scene, G.obedit, OB_RECALC_DATA); BIF_undo_push("Reveal");