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:
authorMatt Ebb <matt@mke3.net>2007-07-03 11:24:55 +0400
committerMatt Ebb <matt@mke3.net>2007-07-03 11:24:55 +0400
commit427d6fc21d94154ce07b44671737ae064e327785 (patch)
treee8f901fe7ff0518a55d4347442faa9a04368a452 /source/blender/src/editmesh_tools.c
parentcb82b297ad3f8439d2d31a10bbbdb06ed9d7dcf5 (diff)
* Removed the 'Beautify Fill' confirmation. None of the other fill
tools have them any more, it was an annoying historical artifact from before undo.
Diffstat (limited to 'source/blender/src/editmesh_tools.c')
-rw-r--r--source/blender/src/editmesh_tools.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/src/editmesh_tools.c b/source/blender/src/editmesh_tools.c
index b69ce4bdead..f08e841c89b 100644
--- a/source/blender/src/editmesh_tools.c
+++ b/source/blender/src/editmesh_tools.c
@@ -2919,8 +2919,6 @@ void beauty_fill(void)
totedge = count_selected_edges(em->edges.first);
if(totedge==0) return;
- if(okee("Beautify fill")==0) return;
-
/* temp block with face pointers */
efaar= (EVPTuple *) MEM_callocN(totedge * sizeof(EVPTuple), "beautyfill");