[Bf-blender-cvs] [1760b8c59fa] blender-v2.83-release: Fix T75878: Modifiers disappearing from UI

Julian Eisel noreply at git.blender.org
Sun Apr 19 19:06:37 CEST 2020


Commit: 1760b8c59fa76a5c0cd0ef5d386d876cdf767de2
Author: Julian Eisel
Date:   Sun Apr 19 15:03:44 2020 +0200
Branches: blender-v2.83-release
https://developer.blender.org/rB1760b8c59fa76a5c0cd0ef5d386d876cdf767de2

Fix T75878: Modifiers disappearing from UI

Typo in 4f9a56cbc4e8.

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index 571811e49d6..b9fc7431a9a 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -1387,7 +1387,7 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
 
                 if md.mask_tex_mapping == 'OBJECT':
                     layout.prop(md, "mask_tex_map_object", text="Object")
-                    obj = md.mask_text_map_object
+                    obj = md.mask_tex_map_object
                     if obj and obj.type == 'ARMATURE':
                         layout.prop_search(md, "mask_tex_map_bone", obj.data, "bones", text="Bone")
                 elif md.mask_tex_mapping == 'UV' and ob.type == 'MESH':



More information about the Bf-blender-cvs mailing list