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:
authorCampbell Barton <ideasman42@gmail.com>2018-11-20 00:08:46 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-20 00:11:46 +0300
commitc9f24a569070f8b4f804cf56e1f0f87e0042a4e2 (patch)
treea38964a2201e823d2becece99524abb3abc1f7c1 /release/scripts/startup/bl_operators/presets.py
parent3c8c9760865d14c8dffa3a4cd091e4027b1501e3 (diff)
WM: remove interaction presets
These only exposed a few options, which didn't end up helping much to make Blender's key-map fit the behavior of other applications.
Diffstat (limited to 'release/scripts/startup/bl_operators/presets.py')
-rw-r--r--release/scripts/startup/bl_operators/presets.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/release/scripts/startup/bl_operators/presets.py b/release/scripts/startup/bl_operators/presets.py
index 3e08bd1fe6f..770133e2514 100644
--- a/release/scripts/startup/bl_operators/presets.py
+++ b/release/scripts/startup/bl_operators/presets.py
@@ -441,32 +441,6 @@ class AddPresetHairDynamics(AddPresetBase, Operator):
]
-class AddPresetInteraction(AddPresetBase, Operator):
- """Add or remove an Application Interaction Preset"""
- bl_idname = "wm.interaction_preset_add"
- bl_label = "Add Interaction Preset"
- preset_menu = "USERPREF_MT_interaction_presets"
-
- preset_defines = [
- "user_preferences = bpy.context.user_preferences"
- ]
-
- preset_values = [
- "user_preferences.edit.use_drag_immediately",
- "user_preferences.edit.use_insertkey_xyz_to_rgb",
- "user_preferences.inputs.invert_mouse_zoom",
- "user_preferences.inputs.select_mouse",
- "user_preferences.inputs.use_emulate_numpad",
- "user_preferences.inputs.use_mouse_continuous",
- "user_preferences.inputs.use_mouse_emulate_3_button",
- "user_preferences.inputs.view_rotate_method",
- "user_preferences.inputs.view_zoom_axis",
- "user_preferences.inputs.view_zoom_method",
- ]
-
- preset_subdir = "interaction"
-
-
class AddPresetTrackingCamera(AddPresetBase, Operator):
"""Add or remove a Tracking Camera Intrinsics Preset"""
bl_idname = "clip.camera_preset_add"
@@ -748,7 +722,6 @@ classes = (
AddPresetCloth,
AddPresetFluid,
AddPresetHairDynamics,
- AddPresetInteraction,
AddPresetInterfaceTheme,
AddPresetKeyconfig,
AddPresetNodeColor,