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:
authorDalai Felinto <dfelinto@gmail.com>2019-08-21 21:11:47 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-08-22 16:16:43 +0300
commit662d94e020f36e75b9c6b4a258f31c1625573ee8 (patch)
tree1d37f2032faa47e608fd7d36a95a989fda7fc5de /release/scripts
parent4c5becb6b143895c16b58e57b369258f61f0558e (diff)
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.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/properties_output.py4
1 files changed, 1 insertions, 3 deletions
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()