[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3975] contrib/py/scripts/addons/ presets/keyconfig/blender_2012_experimental.py: Changed orbiting back to MMB instead of Shift-MMB.

Nathan Vegdahl cessen at cessen.com
Sat Nov 17 01:21:48 CET 2012


Revision: 3975
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3975
Author:   cessen
Date:     2012-11-17 00:21:42 +0000 (Sat, 17 Nov 2012)
Log Message:
-----------
Changed orbiting back to MMB instead of Shift-MMB.

After doing some key-stroke capturing of my own Blender usage,
I found that I do orbiting roughly twice as much as panning.  My suspicion
is that this is pretty typical.  It makes sense to have the most
commonly done operations cause the least hand-strain, so I changed it back
to Blender's original behavior, where orbit is just plain MMB-drag, and
panning is Shift-MMB-drag.

It's not consistent with the other editors in Blender, where MMB-drag
is pan, but I think the break in consistency is worth it in this case.

Modified Paths:
--------------
    contrib/py/scripts/addons/presets/keyconfig/blender_2012_experimental.py

Modified: contrib/py/scripts/addons/presets/keyconfig/blender_2012_experimental.py
===================================================================
--- contrib/py/scripts/addons/presets/keyconfig/blender_2012_experimental.py	2012-11-16 00:05:33 UTC (rev 3974)
+++ contrib/py/scripts/addons/presets/keyconfig/blender_2012_experimental.py	2012-11-17 00:21:42 UTC (rev 3975)
@@ -533,9 +533,9 @@
     
 
     # Basics with mouse
-    kmi = km.keymap_items.new('view3d.move', 'MIDDLEMOUSE', 'PRESS')
+    kmi = km.keymap_items.new('view3d.rotate', 'MIDDLEMOUSE', 'PRESS')
+    kmi = km.keymap_items.new('view3d.move', 'MIDDLEMOUSE', 'PRESS', shift=True)
     kmi = km.keymap_items.new('view3d.zoom', 'MIDDLEMOUSE', 'PRESS', ctrl=True)
-    kmi = km.keymap_items.new('view3d.rotate', 'MIDDLEMOUSE', 'PRESS', shift=True)
     #kmi = km.keymap_items.new('view3d.dolly', 'MIDDLEMOUSE', 'PRESS', shift=True, ctrl=True)
 
     # Basics with mouse wheel



More information about the Bf-extensions-cvs mailing list