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-08-11 16:40:42 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2020-08-12 11:35:06 +0300
commit9b58a41a929c77a3b6dd72bf2284d77eba6c68cf (patch)
tree7021aab7d1330894bd572058f353707165f9787c /release
parentdbf5bb7af2e45ea59c7a15346a5ee989828f2d07 (diff)
Fix T79708: ShapeKey value greyed out
Mistake in rB0e9999a93edd. Maniphest Tasks: T79708 Differential Revision: https://developer.blender.org/D8539
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_mesh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 77308fed014..7ff2688f2a7 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -350,7 +350,7 @@ class DATA_PT_shape_keys(MeshButtonsPanel, Panel):
if enable_edit or (ob.use_shape_key_edit_mode and ob.type == 'MESH'):
enable_pin = True
- if ob.show_only_shape_key:
+ if ob.show_only_shape_key is False:
enable_edit_value = True
row = layout.row()