From 9bf395e7cdc277ff578c8e4e11b1f88b13c348f9 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 7 Apr 2010 09:35:14 +0000 Subject: [PATCH] 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. --- source/blender/editors/mesh/mesh_ops.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c index 43a7f2daf1d..1b225ed1848 100644 --- a/source/blender/editors/mesh/mesh_ops.c +++ b/source/blender/editors/mesh/mesh_ops.c @@ -298,9 +298,6 @@ void ED_keymap_mesh(wmKeyConfig *keyconf) 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*/);