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:
authorWilliam Reynish <billrey@me.com>2019-05-08 10:10:29 +0300
committerWilliam Reynish <billrey@me.com>2019-05-08 10:10:29 +0300
commit01555d29fad42e5c404794990dd10fedd2dafb64 (patch)
tree491c151b7c3403b0414d25593deb78105f339a92
parent370345573eb7860cc68769aa9db4d833671c18d9 (diff)
UI: Remove Filters toggle in the Clip Editor Graph view
This was trying to emulate the 2.79 Graph Editor. The toggle took up more room that the filter toggle it revealed, and it made the header buttons jump around Better to just have the filter toggles showing immediately.
-rw-r--r--release/scripts/startup/bl_ui/space_clip.py19
1 files changed, 6 insertions, 13 deletions
diff --git a/release/scripts/startup/bl_ui/space_clip.py b/release/scripts/startup/bl_ui/space_clip.py
index b92b12abb86..9c5e2f08df5 100644
--- a/release/scripts/startup/bl_ui/space_clip.py
+++ b/release/scripts/startup/bl_ui/space_clip.py
@@ -202,19 +202,12 @@ class CLIP_HT_header(Header):
row = layout.row(align=True)
- if sc.show_filters:
- row.prop(sc, "show_filters", icon='DISCLOSURE_TRI_DOWN',
- text="Filters")
-
- sub = row.row(align=True)
- sub.active = clip.tracking.reconstruction.is_valid
- sub.prop(sc, "show_graph_frames", icon='SEQUENCE', text="")
-
- row.prop(sc, "show_graph_tracks_motion", icon='GRAPH', text="")
- row.prop(sc, "show_graph_tracks_error", icon='ANIM', text="")
- else:
- row.prop(sc, "show_filters", icon='DISCLOSURE_TRI_RIGHT',
- text="Filters")
+ sub = row.row(align=True)
+ sub.active = clip.tracking.reconstruction.is_valid
+ sub.prop(sc, "show_graph_frames", icon='SEQUENCE', text="")
+
+ row.prop(sc, "show_graph_tracks_motion", icon='GRAPH', text="")
+ row.prop(sc, "show_graph_tracks_error", icon='ANIM', text="")
elif sc.view == 'DOPESHEET':
dopesheet = tracking.dopesheet