1
1

Clip editor: Use Ascending/Descending order instead of "Inverse"

This is more intuitive for artists.
This commit is contained in:
2022-06-14 17:34:05 +02:00
parent c1a231f40b
commit 216a2c0f37

View File

@@ -199,7 +199,8 @@ class CLIP_HT_header(Header):
row = layout.row(align=True)
row.prop(dopesheet, "sort_method", text="")
row.prop(dopesheet, "use_invert_sort",
text="Invert", toggle=True)
text="", toggle=True,
icon='SORT_DESC' if dopesheet.use_invert_sort else 'SORT_ASC')
def _draw_masking(self, context):
layout = self.layout