[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [28066] trunk/blender/source/blender/ editors/mesh/mesh_ops.c: Fix [#21940] Hotkeys conflict in Edit mode between (fill, beauty fill) and (make/ clear F-gon)

Matt Ebb matt at mke3.net
Wed Apr 7 11:35:15 CEST 2010


Revision: 28066
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=28066
Author:   broken
Date:     2010-04-07 11:35:14 +0200 (Wed, 07 Apr 2010)

Log Message:
-----------
Fix [#21940] Hotkeys conflict in Edit mode between (fill, beauty fill) and (make/clear F-gon)

Removed make/clear f-gon hotkeys, rarely used and people who want them can bind it 
themselves anyway.

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mesh/mesh_ops.c

Modified: trunk/blender/source/blender/editors/mesh/mesh_ops.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/mesh_ops.c	2010-04-07 09:25:53 UTC (rev 28065)
+++ trunk/blender/source/blender/editors/mesh/mesh_ops.c	2010-04-07 09:35:14 UTC (rev 28066)
@@ -298,9 +298,6 @@
 	WM_keymap_add_item(keymap, "MESH_OT_delete", XKEY, KM_PRESS, 0, 0);
 	WM_keymap_add_item(keymap, "MESH_OT_delete", DELKEY, KM_PRESS, 0, 0);
 	
-	WM_keymap_add_item(keymap, "MESH_OT_fgon_make", FKEY, KM_PRESS, KM_ALT, 0);
-	WM_keymap_add_item(keymap, "MESH_OT_fgon_clear", FKEY, KM_PRESS, KM_SHIFT|KM_ALT, 0);
-	
 	WM_keymap_add_item(keymap, "MESH_OT_knife_cut", LEFTMOUSE, KM_PRESS, 0, KKEY);
 	RNA_enum_set(WM_keymap_add_item(keymap, "MESH_OT_knife_cut", LEFTMOUSE, KM_PRESS, KM_SHIFT, KKEY)->ptr, "type", 2/*KNIFE_MIDPOINT*/);
 	





More information about the Bf-blender-cvs mailing list