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:
authorHans Goudey <h.goudey@me.com>2021-01-22 20:28:59 +0300
committerHans Goudey <h.goudey@me.com>2021-01-22 20:28:59 +0300
commite91b59b589a0100574550a7d0d48bb9e8ba1515d (patch)
tree86e8d27bd9e3ee22b5cb2036a9f6d6fa70f9376d /source/blender/modifiers
parent735093dee8400ea67bd46ce5a0e93ec80cc44745 (diff)
parente845467d93fe35e222d14b0bb27472ccb309b321 (diff)
Merge branch 'blender-v2.92-release'
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_ui_common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_ui_common.c b/source/blender/modifiers/intern/MOD_ui_common.c
index c5ee96491b8..821c74496f2 100644
--- a/source/blender/modifiers/intern/MOD_ui_common.c
+++ b/source/blender/modifiers/intern/MOD_ui_common.c
@@ -460,6 +460,7 @@ PanelType *modifier_subpanel_register(ARegionType *region_type,
BLI_strncpy(panel_type->label, label, BKE_ST_MAXNAME);
BLI_strncpy(panel_type->context, "modifier", BKE_ST_MAXNAME);
BLI_strncpy(panel_type->translation_context, BLT_I18NCONTEXT_DEFAULT_BPYRNA, BKE_ST_MAXNAME);
+ BLI_strncpy(panel_type->active_property, "is_active", BKE_ST_MAXNAME);
panel_type->draw_header = draw_header;
panel_type->draw = draw;