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:
authorCampbell Barton <campbell@blender.org>2022-03-26 10:04:27 +0300
committerCampbell Barton <campbell@blender.org>2022-03-26 10:04:27 +0300
commitc01afe9562a9439e38cfe917c993c161b815cc94 (patch)
tree0a38462f6e70e7d35d6f309629ad701dbcf22b92 /source/blender/gpencil_modifiers/intern/MOD_gpencilsmooth.c
parentc330c7a5daacde1282a72bef74066d9a2ddf69d8 (diff)
Cleanup: use "use_" prefix for booleans
Diffstat (limited to 'source/blender/gpencil_modifiers/intern/MOD_gpencilsmooth.c')
-rw-r--r--source/blender/gpencil_modifiers/intern/MOD_gpencilsmooth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/gpencil_modifiers/intern/MOD_gpencilsmooth.c b/source/blender/gpencil_modifiers/intern/MOD_gpencilsmooth.c
index eb51a247d87..1992ebd1508 100644
--- a/source/blender/gpencil_modifiers/intern/MOD_gpencilsmooth.c
+++ b/source/blender/gpencil_modifiers/intern/MOD_gpencilsmooth.c
@@ -178,7 +178,7 @@ static void panel_draw(const bContext *UNUSED(C), Panel *panel)
col = uiLayoutColumn(layout, false);
uiLayoutSetActive(col, RNA_boolean_get(ptr, "use_edit_position"));
- uiItemR(col, ptr, "keep_shape", 0, NULL, ICON_NONE);
+ uiItemR(col, ptr, "use_keep_shape", 0, NULL, ICON_NONE);
gpencil_modifier_panel_end(layout, ptr);
}