Cleanup: Correct order of proxy resolutions

Wrong order introduced by rB7fc60bff14a6: UI: Layout changes for new checkbox layout possibilities
This commit is contained in:
Richard Antalik 2020-05-14 02:53:10 +02:00
parent c8060a78fd
commit 879032d2ab
1 changed files with 1 additions and 1 deletions

View File

@ -1881,8 +1881,8 @@ class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, Panel):
row = layout.row(heading="Resolutions", align=True)
row.prop(strip.proxy, "build_25", toggle=True)
row.prop(strip.proxy, "build_75", toggle=True)
row.prop(strip.proxy, "build_50", toggle=True)
row.prop(strip.proxy, "build_75", toggle=True)
row.prop(strip.proxy, "build_100", toggle=True)
layout.use_property_split = True