[Bf-blender-cvs] [903041e1c0e] master: Outliner restriction filter: Unify order

Dalai Felinto noreply at git.blender.org
Tue May 14 23:14:48 CEST 2019


Commit: 903041e1c0eaf1797573f193be6d5561a907278e
Author: Dalai Felinto
Date:   Tue May 14 17:13:26 2019 -0300
Branches: master
https://developer.blender.org/rB903041e1c0eaf1797573f193be6d5561a907278e

Outliner restriction filter: Unify order

The popup menu was a different order than the drawing in the outliner.

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_outliner.py b/release/scripts/startup/bl_ui/space_outliner.py
index f0f6776805d..42f3b32a249 100644
--- a/release/scripts/startup/bl_ui/space_outliner.py
+++ b/release/scripts/startup/bl_ui/space_outliner.py
@@ -308,8 +308,8 @@ class OUTLINER_PT_filter(Panel):
             row = layout.row(align=True)
             row.prop(space, "show_restrict_column_enable", text="")
             row.prop(space, "show_restrict_column_selectable", text="")
-            row.prop(space, "show_restrict_column_instance", text="")
             row.prop(space, "show_restrict_column_viewport", text="")
+            row.prop(space, "show_restrict_column_instance", text="")
             row.prop(space, "show_restrict_column_render", text="")
             row.prop(space, "show_restrict_column_holdout", text="")
             row.prop(space, "show_restrict_column_indirect_only", text="")
@@ -318,8 +318,8 @@ class OUTLINER_PT_filter(Panel):
             layout.label(text="Restriction Toggles:")
             row = layout.row(align=True)
             row.prop(space, "show_restrict_column_selectable", text="")
-            row.prop(space, "show_restrict_column_instance", text="")
             row.prop(space, "show_restrict_column_viewport", text="")
+            row.prop(space, "show_restrict_column_instance", text="")
             row.prop(space, "show_restrict_column_render", text="")
             layout.separator()



More information about the Bf-blender-cvs mailing list