[Bf-extensions-cvs] [5c1812e] master: Fix some debug-only code slipped into the previous commit

Sergey Sharybin noreply at git.blender.org
Fri Apr 7 15:52:39 CEST 2017


Commit: 5c1812e61ff4a557c648521a740530aeb56bc4d9
Author: Sergey Sharybin
Date:   Fri Apr 7 15:52:24 2017 +0200
Branches: master
https://developer.blender.org/rBA5c1812e61ff4a557c648521a740530aeb56bc4d9

Fix some debug-only code slipped into the previous commit

===================================================================

M	mesh_extra_tools/mesh_pen_tool.py
M	mesh_extra_tools/vfe_specials.py

===================================================================

diff --git a/mesh_extra_tools/mesh_pen_tool.py b/mesh_extra_tools/mesh_pen_tool.py
index 59bdded..704ebc3 100644
--- a/mesh_extra_tools/mesh_pen_tool.py
+++ b/mesh_extra_tools/mesh_pen_tool.py
@@ -532,7 +532,7 @@ def register():
     bpy.types.Scene.pen_tool_props = PointerProperty(type=pen_tool_properties)
 
     wm = bpy.context.window_manager
-    km = wm.keyconfigs.addon.keymaps.new(name='3D View X', space_type='VIEW_3D')
+    km = wm.keyconfigs.addon.keymaps.new(name='3D View', space_type='VIEW_3D')
 
     # Note: left click + D key is reserved for Grease Pencil draw
     kmi = km.keymap_items.new("pen_tool.operator", 'D', 'PRESS', ctrl=True)
diff --git a/mesh_extra_tools/vfe_specials.py b/mesh_extra_tools/vfe_specials.py
index fef6679..99536c0 100644
--- a/mesh_extra_tools/vfe_specials.py
+++ b/mesh_extra_tools/vfe_specials.py
@@ -72,7 +72,7 @@ def register():
 
     wm = bpy.context.window_manager
     if wm.keyconfigs.addon:
-        km = wm.keyconfigs.addon.keymaps.new(name='3D View X', space_type='VIEW_3D')
+        km = wm.keyconfigs.addon.keymaps.new(name='3D View', space_type='VIEW_3D')
         kmi = km.keymap_items.new('mesh.addon_call_context_menu', 'RIGHTMOUSE', 'DOUBLE_CLICK')
         addon_keymaps.append((km, kmi))



More information about the Bf-extensions-cvs mailing list