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-12-04 09:33:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-04 09:33:47 +0300
commitd8ed96a6a0f4b64419afed73b15bba3527f1d2e7 (patch)
treedbf293148baaa7702799e9408d6381c54afea600 /release
parentb16f03566ba02a7d0da7d5cf0b749a6b9e3e725a (diff)
Cleanup: remove unused brush set by index
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_operators/wm.py37
1 files changed, 0 insertions, 37 deletions
diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 03f83097cb0..164f1100e83 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -162,42 +162,6 @@ def module_filesystem_remove(path_base, module_name):
os.remove(f_full)
-class BRUSH_OT_active_index_set(Operator):
- """Set active sculpt/paint brush from it's number"""
- bl_idname = "brush.active_index_set"
- bl_label = "Set Brush Number"
-
- mode: StringProperty(
- name="Mode",
- description="Paint mode to set brush for",
- maxlen=1024,
- )
- index: IntProperty(
- name="Number",
- description="Brush number",
- )
-
- _attr_dict = {
- "sculpt": "use_paint_sculpt",
- "vertex_paint": "use_paint_vertex",
- "weight_paint": "use_paint_weight",
- "image_paint": "use_paint_image",
- }
-
- def execute(self, context):
- attr = self._attr_dict.get(self.mode)
- if attr is None:
- return {'CANCELLED'}
-
- toolsettings = context.tool_settings
- for i, brush in enumerate((cur for cur in bpy.data.brushes if getattr(cur, attr))):
- if i == self.index:
- getattr(toolsettings, self.mode).brush = brush
- return {'FINISHED'}
-
- return {'CANCELLED'}
-
-
class WM_OT_context_set_boolean(Operator):
"""Set a context value"""
bl_idname = "wm.context_set_boolean"
@@ -2798,7 +2762,6 @@ class WM_OT_drop_blend_file(Operator):
col.operator("wm.append", text="Append...", icon='APPEND_BLEND').filepath = self.filepath
classes = (
- BRUSH_OT_active_index_set,
WM_OT_addon_disable,
WM_OT_addon_enable,
WM_OT_addon_expand,