Page MenuHome

fixes.patch

fixes.patch

Index: release/scripts/presets/interaction/blender.py
===================================================================
--- release/scripts/presets/interaction/blender.py (revision 31578)
+++ release/scripts/presets/interaction/blender.py (working copy)
@@ -2,7 +2,7 @@
import bpy
wm = bpy.context.manager
-wm.active_keyconfig = wm.keyconfigs['Blender']
+wm.keyconfigs.active = wm.keyconfigs['Blender']
bpy.context.user_preferences.view.use_mouse_auto_depth = False
bpy.context.user_preferences.view.use_zoom_to_mouse = False
Index: release/scripts/presets/interaction/maya.py
===================================================================
--- release/scripts/presets/interaction/maya.py (revision 31578)
+++ release/scripts/presets/interaction/maya.py (working copy)
@@ -7,7 +7,7 @@
# Map 3D View
km = kc.add_keymap('3D View', space_type='VIEW_3D', region_type='WINDOW', modal=False)
-kmi = km.items.add('view3d.show_manipulator', 'LEFTMOUSE', 'PRESS', any=True)
+kmi = km.items.add('view3d.manipulator', 'LEFTMOUSE', 'PRESS', any=True)
kmi.properties.release_confirm = True
kmi = km.items.add('view3d.cursor3d', 'ACTIONMOUSE', 'PRESS')
kmi = km.items.add('view3d.rotate', 'LEFTMOUSE', 'PRESS', alt=True)
Index: release/scripts/ui/space_sequencer.py
===================================================================
--- release/scripts/ui/space_sequencer.py (revision 31578)
+++ release/scripts/ui/space_sequencer.py (working copy)
@@ -743,7 +743,7 @@
flow.prop(strip, "use_proxy_custom_directory")
flow.prop(strip, "use_proxy_custom_file")
if strip.proxy: # TODO - need to add this somehow
- if strip.proxy_custom_directory and not strip.use_proxy_custom_file:
+ if strip.use_proxy_custom_directory and not strip.use_proxy_custom_file:
flow.prop(strip.proxy, "directory")
if strip.use_proxy_custom_file:
flow.prop(strip.proxy, "filepath")

File Metadata

Mime Type
text/x-diff
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
83/b8/033ab0c45e0ac7f2a891cced6cb6

Event Timeline