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:
authorPhilipp Oeser <info@graphics-engineer.com>2020-01-29 12:26:45 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2020-01-29 21:16:11 +0300
commite4faed120d9c294ea5d6061b3213ed4f6784db52 (patch)
tree9eb68d5dda1d792cae9ab777be6546d28d658043 /release/scripts/startup/bl_ui/properties_particle.py
parente7c90438e014f5c2f951ec965db20eea1bd783fa (diff)
Fix T73466: Unable to set particle rotation
Error in rB1f6ab32196d7. Maniphest Tasks: T73466 Differential Revision: https://developer.blender.org/D6706
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_particle.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_particle.py2
1 files changed, 1 insertions, 1 deletions
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):