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>2010-03-29 11:07:20 +0400
committerMatt Ebb <matt@mke3.net>2010-03-29 11:07:20 +0400
commit86b30beb45fbdfd74bc7cef38a6098a2205b954d (patch)
tree78cc774646768ae5225851496ad6bfdfb99d3800 /source/blender/editors/mesh
parentbd7ed4f077d3ff86c1043642b5d228a95d9334a6 (diff)
Fix [#21542] Clear origin shortkey Alt+O in object mode doesn't work
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/mesh_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/mesh_ops.c b/source/blender/editors/mesh/mesh_ops.c
index 5b187b10b7d..5351a2b5a2d 100644
--- a/source/blender/editors/mesh/mesh_ops.c
+++ b/source/blender/editors/mesh/mesh_ops.c
@@ -309,6 +309,6 @@ void ED_keymap_mesh(wmKeyConfig *keyconf)
WM_keymap_add_menu(keymap, "VIEW3D_MT_uv_map", UKEY, KM_PRESS, 0, 0);
WM_keymap_add_menu(keymap, "VIEW3D_MT_vertex_group", GKEY, KM_PRESS, KM_CTRL, 0);
- ED_object_generic_keymap(keyconf, keymap, TRUE);
+ ED_object_generic_keymap(keyconf, keymap, 2);
}