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>2019-10-22 18:34:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-10-22 18:34:30 +0300
commitac18c3c28dee2f6a57be8620c7e9dbf2751a21f0 (patch)
tree27b4eedb67741a33106d7210e6e6a382db5f4347 /release
parentf8e8f4ee0f8ad5384e6d4ee7c98e93852e100608 (diff)
Cleanup: unused variables, enums, spelling
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_object.py1
-rw-r--r--release/scripts/startup/bl_ui/properties_paint_common.py2
-rw-r--r--release/scripts/startup/bl_ui/space_filebrowser.py3
-rw-r--r--release/scripts/startup/bl_ui/space_text.py7
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py7
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py6
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py1
7 files changed, 5 insertions, 22 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index d2ba047e07e..bb020084b03 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -105,7 +105,6 @@ class OBJECT_PT_delta_transform(ObjectButtonsPanel, Panel):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
- flow = layout.grid_flow(row_major=True, columns=0, even_columns=True, even_rows=True, align=False)
ob = context.object
diff --git a/release/scripts/startup/bl_ui/properties_paint_common.py b/release/scripts/startup/bl_ui/properties_paint_common.py
index 23b2556eddb..d21a3456e61 100644
--- a/release/scripts/startup/bl_ui/properties_paint_common.py
+++ b/release/scripts/startup/bl_ui/properties_paint_common.py
@@ -109,8 +109,6 @@ class VIEW3D_MT_tools_projectpaint_clone(Menu):
def brush_texpaint_common(panel, context, layout, brush, _settings, projpaint=False):
- capabilities = brush.image_paint_capabilities
-
col = layout.column()
if brush.image_tool == 'FILL' and not projpaint:
diff --git a/release/scripts/startup/bl_ui/space_filebrowser.py b/release/scripts/startup/bl_ui/space_filebrowser.py
index e1097e8d512..2e0d47b7d4d 100644
--- a/release/scripts/startup/bl_ui/space_filebrowser.py
+++ b/release/scripts/startup/bl_ui/space_filebrowser.py
@@ -27,7 +27,6 @@ class FILEBROWSER_HT_header(Header):
layout = self.layout
st = context.space_data
- params = st.params
if st.active_operator is None:
layout.template_header()
@@ -57,7 +56,6 @@ class FILEBROWSER_PT_display(Panel):
space = context.space_data
params = space.params
- is_lib_browser = params.use_library_browsing
layout.label(text="Display as")
layout.column().prop(params, "display_type", expand=True)
@@ -435,7 +433,6 @@ class FILEBROWSER_MT_select(Menu):
def draw(self, context):
layout = self.layout
- st = context.space_data
layout.operator("file.select_all", text="All").action = 'SELECT'
layout.operator("file.select_all", text="None").action = 'DESELECT'
diff --git a/release/scripts/startup/bl_ui/space_text.py b/release/scripts/startup/bl_ui/space_text.py
index e82c6bc5dc7..9e9ddcf3505 100644
--- a/release/scripts/startup/bl_ui/space_text.py
+++ b/release/scripts/startup/bl_ui/space_text.py
@@ -193,11 +193,9 @@ class TEXT_PT_find(Panel):
class TEXT_MT_view_navigation(Menu):
bl_label = "Navigation"
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
- st = context.space_data
-
layout.operator("text.move", text="Top").type = 'FILE_TOP'
layout.operator("text.move", text="Bottom").type = 'FILE_BOTTOM'
@@ -384,9 +382,8 @@ class TEXT_MT_edit(Menu):
def poll(cls, context):
return context.space_data.text is not None
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
- st = context.space_data
layout.operator("ed.undo")
layout.operator("ed.redo")
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index 4bce8a95528..9c3a3fd28fa 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -35,9 +35,6 @@ from bl_ui.space_toolsystem_common import (
from bpy.app.translations import pgettext_tip as tip_
-I18N_CTX_OPERATOR = bpy.app.translations.contexts_C_to_py['BLT_I18NCONTEXT_OPERATOR_DEFAULT']
-
-
def kmi_to_string_or_none(kmi):
return kmi.to_string() if kmi else "<none>"
@@ -724,8 +721,8 @@ class _defs_edit_mesh:
@ToolDef.from_fn
def shear():
- def draw_settings(context, layout, tool):
- props = tool.operator_properties("transform.shear")
+ def draw_settings(context, layout, _tool):
+ # props = tool.operator_properties("transform.shear")
_template_widget.VIEW3D_GGT_xform_gizmo.draw_settings_with_index(context, layout, 2)
return dict(
idname="builtin.shear",
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 137691c10ba..b65bdc19a14 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -2921,7 +2921,7 @@ class VIEW3D_MT_mask(Menu):
class VIEW3D_MT_sculpt_set_pivot(Menu):
bl_label = "Sculpt Set Pivot"
- def draw(self, context):
+ def draw(self, _context):
layout = self.layout
props = layout.operator("sculpt.set_pivot_position", text="Pivot to Origin")
@@ -6055,8 +6055,6 @@ class VIEW3D_PT_pivot_point(Panel):
def draw(self, context):
tool_settings = context.tool_settings
- obj = context.active_object
- mode = context.mode
layout = self.layout
col = layout.column()
@@ -6453,8 +6451,6 @@ class VIEW3D_MT_gpencil_edit_context_menu(Menu):
is_stroke_mode = context.tool_settings.gpencil_selectmode_edit == 'STROKE'
is_segment_mode = context.tool_settings.gpencil_selectmode_edit == 'SEGMENT'
- is_3d_view = context.space_data.type == 'VIEW_3D'
-
layout = self.layout
layout.operator_context = 'INVOKE_REGION_WIN'
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index 3aee14e0239..c6972b15432 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -43,7 +43,6 @@ class VIEW3D_MT_brush_context_menu(Menu):
def draw(self, context):
layout = self.layout
- tool_settings = context.tool_settings
settings = UnifiedPaintPanel.paint_settings(context)
brush = getattr(settings, "brush", None)