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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-11-26 18:07:50 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-11-26 18:14:04 +0300
commitb214e06b02e83fc518e4d06b2fefaf6fce4b9abc (patch)
treedf69158ce753723279bfb7c1cac03fdd710849b7 /release/scripts/startup/bl_ui/space_clip.py
parent9467c0dcf9bd0d91d40a63e885a565274323daef (diff)
Clip Editor: Remove Image label from selector
Unfortunately, it didn't turn out to be as great as I've hoped to it will. The issue is: the label eats too much space, making selector buttons and image name to be barely readable. Initial idea of making the panel somewhat wider didn't work either: due to the sizing policy of label it takes a lot of panel width to make image name readable.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_clip.py')
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index 324931b2269..9afdcdff9a5 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -779,7 +779,7 @@ class CLIP_PT_plane_track(CLIP_PT_tracking_panel, Panel):
layout.prop(active_track, "name")
layout.prop(active_track, "use_auto_keying")
layout.template_ID(
- active_track, "image", new="image.new", open="image.open", text="Image")
+ active_track, "image", new="image.new", open="image.open")
row = layout.row()
row.active = active_track.image is not None