[Bf-blender-cvs] [879032d2ab9] master: Cleanup: Correct order of proxy resolutions

Richard Antalik noreply at git.blender.org
Thu May 14 03:00:33 CEST 2020


Commit: 879032d2ab95fb6124eb95b131a0bbc315a05dfe
Author: Richard Antalik
Date:   Thu May 14 02:53:10 2020 +0200
Branches: master
https://developer.blender.org/rB879032d2ab95fb6124eb95b131a0bbc315a05dfe

Cleanup: Correct order of proxy resolutions

Wrong order introduced by rB7fc60bff14a6: UI: Layout changes for new checkbox layout possibilities

===================================================================

M	release/scripts/startup/bl_ui/space_sequencer.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index b908e61b9e1..ca25c29960c 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -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



More information about the Bf-blender-cvs mailing list