[Bf-blender-cvs] [662d94e020f] master: Multi-View user interface minor tweak

Dalai Felinto noreply at git.blender.org
Thu Aug 22 15:17:06 CEST 2019


Commit: 662d94e020f36e75b9c6b4a258f31c1625573ee8
Author: Dalai Felinto
Date:   Wed Aug 21 15:11:47 2019 -0300
Branches: master
https://developer.blender.org/rB662d94e020f36e75b9c6b4a258f31c1625573ee8

Multi-View user interface minor tweak

There is no reason to not expand this enum as we did for 2.79.
It is self explanatory enough and it has only two options.

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_output.py b/release/scripts/startup/bl_ui/properties_output.py
index 4d230520d11..748961bb40f 100644
--- a/release/scripts/startup/bl_ui/properties_output.py
+++ b/release/scripts/startup/bl_ui/properties_output.py
@@ -479,9 +479,7 @@ class RENDER_PT_stereoscopy(RenderOutputButtonsPanel, Panel):
         basic_stereo = rd.views_format == 'STEREO_3D'
 
         row = layout.row()
-        row.use_property_split = True
-        row.use_property_decorate = False
-        row.prop(rd, "views_format")
+        layout.row().prop(rd, "views_format", expand=True)
 
         if basic_stereo:
             row = layout.row()



More information about the Bf-blender-cvs mailing list