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>2014-03-19 18:32:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-19 18:34:24 +0400
commitcc2cdfb08a969f3f6728ba56f83aabe5f0b16c6b (patch)
treea89e2e4b9900725c29043b48b5868d1e2aaef234 /release/scripts/startup/bl_ui/space_clip.py
parent44d6c686fa57639007997f18d4abb9dace22cc08 (diff)
Code cleanup: de-triplicate add menu/toolbars, also style edits
Diffstat (limited to 'release/scripts/startup/bl_ui/space_clip.py')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index dc01c2c8f3d..bcc68c02f9b 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -371,10 +371,10 @@ class CLIP_PT_tools_tracking(CLIP_PT_tracking_panel, Panel):
row.label(text="Clear:")
row.scale_x = 2.0
- props = row.operator("clip.clear_track_path", icon="BACK", text="")
+ props = row.operator("clip.clear_track_path", text="", icon='BACK')
props.action = 'UPTO'
- props = row.operator("clip.clear_track_path", icon="FORWARD", text="")
+ props = row.operator("clip.clear_track_path", text="", icon='FORWARD')
props.action = 'REMAINED'
col = layout.column()
@@ -382,10 +382,10 @@ class CLIP_PT_tools_tracking(CLIP_PT_tracking_panel, Panel):
row.label(text="Refine:")
row.scale_x = 2.0
- props = row.operator("clip.refine_markers", icon='LOOP_BACK', text="")
+ props = row.operator("clip.refine_markers", text="", icon='LOOP_BACK')
props.backwards = True
- props = row.operator("clip.refine_markers", icon='LOOP_FORWARDS', text="")
+ props = row.operator("clip.refine_markers", text="", icon='LOOP_FORWARDS')
props.backwards = False
col = layout.column(align=True)
@@ -794,7 +794,7 @@ class CLIP_PT_display(CLIP_PT_clip_view_panel, Panel):
row.separator()
row.prop(sc, "use_grayscale_preview", text="B/W", toggle=True)
row.separator()
- row.prop(sc, "use_mute_footage", text="", icon="VISIBLE_IPO_ON", toggle=True)
+ row.prop(sc, "use_mute_footage", text="", icon='VISIBLE_IPO_ON', toggle=True)
col = layout.column(align=True)
col.prop(sc.clip_user, "use_render_undistorted", text="Render Undistorted")