[Bf-blender-cvs] [802f507] bake-cycles: Cycles-Bake: Move "Output File" section to the bottom of the bake panel.

Jonathan Williamson noreply at git.blender.org
Wed Apr 23 02:47:50 CEST 2014


Commit: 802f507accaec6c3041df8df9878077e9baa87fd
Author: Jonathan Williamson
Date:   Tue Mar 25 20:53:15 2014 -0500
https://developer.blender.org/rB802f507accaec6c3041df8df9878077e9baa87fd

Cycles-Bake: Move "Output File" section to the bottom of the bake panel.

The reason for this is heirarchy. During the order of operations the output file is likely one of the last
things you'll set. First the type and width, then margin, then specifc settings, and finally the output file.

Doing this also helps avoid breaking up the settings that are specific to baking, such as the Type and "Selected to Active".

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

M	intern/cycles/blender/addon/ui.py

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

diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 4b3e829..3625375 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -1337,13 +1337,6 @@ class CyclesRender_PT_bake(CyclesButtonsPanel, Panel):
         col.prop(cbk, "margin")
 
         col.separator()
-        col.label(text="Output File:")
-        col.prop(cbk, "filepath", text="")
-
-        #template bake_image_settings
-        template_bake_image_settings(col, cbk.image_settings)
-
-        col.separator()
         col.prop(cbk, "use_selected_to_active")
         sub = col.column()
         sub.active = cbk.use_selected_to_active
@@ -1362,6 +1355,13 @@ class CyclesRender_PT_bake(CyclesButtonsPanel, Panel):
             row.prop(cbk, "normal_g", text="")
             row.prop(cbk, "normal_b", text="")
 
+        col.separator()
+        col.label(text="Output File:")
+        col.prop(cbk, "filepath", text="")
+
+        col.separator()
+        #template bake_image_settings
+        template_bake_image_settings(col, cbk.image_settings)
 
 
 class CyclesParticle_PT_CurveSettings(CyclesButtonsPanel, Panel):




More information about the Bf-blender-cvs mailing list