[Bf-blender-cvs] [e4faed120d9] blender-v2.82-release: Fix T73466: Unable to set particle rotation

Philipp Oeser noreply at git.blender.org
Wed Jan 29 19:17:49 CET 2020


Commit: e4faed120d9c294ea5d6061b3213ed4f6784db52
Author: Philipp Oeser
Date:   Wed Jan 29 10:26:45 2020 +0100
Branches: blender-v2.82-release
https://developer.blender.org/rBe4faed120d9c294ea5d6061b3213ed4f6784db52

Fix T73466: Unable to set particle rotation

Error in rB1f6ab32196d7.

Maniphest Tasks: T73466

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

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

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 34ff386893b..3384032e332 100644
--- a/release/scripts/startup/bl_ui/properties_particle.py
+++ b/release/scripts/startup/bl_ui/properties_particle.py
@@ -584,7 +584,7 @@ class PARTICLE_PT_rotation(ParticleButtonsPanel, Panel):
 
         layout = self.layout
         layout.prop(part, "use_rotations", text="")
-        layout.enabled = particle_panel_enabled(context, psys) and part.use_rotations
+        layout.enabled = particle_panel_enabled(context, psys)
 
 
     def draw(self, context):



More information about the Bf-blender-cvs mailing list