[Bf-blender-cvs] [b29b1c4ef24] master: UI: Use consistent order for particle display icons

Hans Goudey noreply at git.blender.org
Sat Jun 13 22:59:06 CEST 2020


Commit: b29b1c4ef241c1345a00ccb4a938c3d5c47694a2
Author: Hans Goudey
Date:   Sat Jun 13 16:58:55 2020 -0400
Branches: master
https://developer.blender.org/rBb29b1c4ef241c1345a00ccb4a938c3d5c47694a2

UI: Use consistent order for particle display icons

The viewport, render display order matches modifiers, physics,
and the outliner.

Differential Revision: https://developer.blender.org/D7998

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_particle.py b/release/scripts/startup/bl_ui/properties_particle.py
index cc8fa511e42..f1dd6a1c890 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -136,13 +136,13 @@ class PARTICLE_UL_particle_systems(bpy.types.UIList):
             if md:
                 row.prop(
                     md,
-                    "show_render",
+                    "show_viewport",
                     emboss=False,
                     icon_only=True,
                 )
                 row.prop(
                     md,
-                    "show_viewport",
+                    "show_render",
                     emboss=False,
                     icon_only=True,
                 )



More information about the Bf-blender-cvs mailing list