From ccaeb6a24fbbf2e5be7c15c7b426e2e4af43abe5 Mon Sep 17 00:00:00 2001 From: Howard Trickey <howard.trickey@gmail.com> Date: Fri, 23 Mar 2012 19:04:44 +0000 Subject: [PATCH] mesh_inset addon: redraw before exit seems necessary, not sure why --- mesh_inset/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mesh_inset/__init__.py b/mesh_inset/__init__.py index 20250b08a..0022c3093 100644 --- a/mesh_inset/__init__.py +++ b/mesh_inset/__init__.py @@ -115,6 +115,7 @@ class Inset(bpy.types.Operator): do_inset(mesh, self.inset_amount, self.inset_height, self.region, self.scale == 'PERCENT') bpy.context.user_preferences.edit.use_global_undo = save_global_undo + bpy.context.area.tag_redraw() def do_inset(mesh, amount, height, region, as_percent): -- GitLab