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>2021-10-20 01:13:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-20 01:17:25 +0300
commitd73f6647906d4562a191b78faa578a619090aea9 (patch)
treee3ebdfd7b4d415a0b1c7f569c1d9dd6ffb8deea4 /release/scripts/startup/bl_ui/properties_animviz.py
parentd7b4350749ce3906fcca9803b863fb029b3f541a (diff)
Cleanup: trailing space, use single quotes for enums
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_animviz.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_animviz.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_animviz.py b/release/scripts/startup/bl_ui/properties_animviz.py
index 92e78cd32b6..44965a60489 100644
--- a/release/scripts/startup/bl_ui/properties_animviz.py
+++ b/release/scripts/startup/bl_ui/properties_animviz.py
@@ -70,14 +70,14 @@ class MotionPathButtonsPanel:
col = layout.column(align=True)
- row = col.row(align=True)
+ row = col.row(align=True)
if bones:
row.operator("pose.paths_update", text="Update Paths", icon='BONE_DATA')
row.operator("pose.paths_clear", text="", icon='X')
else:
row.operator("object.paths_update", text="Update Paths", icon='OBJECT_DATA')
row.operator("object.paths_clear", text="", icon='X')
- col.operator("object.paths_update_visible", text="Update All Paths", icon="WORLD")
+ col.operator("object.paths_update_visible", text="Update All Paths", icon='WORLD')
else:
col = layout.column(align=True)
col.label(text="Nothing to show yet...", icon='ERROR')
@@ -86,7 +86,7 @@ class MotionPathButtonsPanel:
col.operator("pose.paths_calculate", text="Calculate...", icon='BONE_DATA')
else:
col.operator("object.paths_calculate", text="Calculate...", icon='OBJECT_DATA')
- col.operator("object.paths_update_visible", text="Update All Paths", icon="WORLD")
+ col.operator("object.paths_update_visible", text="Update All Paths", icon='WORLD')
class MotionPathButtonsPanel_display: