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 <ideasman42@gmail.com>2021-10-21 05:24:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-21 05:24:17 +0300
commit035dcdad90ec9d6881e2d99b90e30f5a481237e1 (patch)
treef4b0c0bf97fee7ed9813f9b5587b03af180251e9 /source/blender/editors/sculpt_paint/sculpt_mask_expand.c
parent69102786047dccdcbaee0df6307a8c3364d28fe0 (diff)
Cleanup: use underscore separators for event struct members
Improve readability using underscores for separators, e.g. prev_click_time instead of prevclicktime.
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_mask_expand.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_mask_expand.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_mask_expand.c b/source/blender/editors/sculpt_paint/sculpt_mask_expand.c
index 9b06b2ee5d5..b59d461bab5 100644
--- a/source/blender/editors/sculpt_paint/sculpt_mask_expand.c
+++ b/source/blender/editors/sculpt_paint/sculpt_mask_expand.c
@@ -170,10 +170,10 @@ static int sculpt_mask_expand_modal(bContext *C, wmOperator *op, const wmEvent *
SculptSession *ss = ob->sculpt;
Sculpt *sd = CTX_data_tool_settings(C)->sculpt;
ARegion *region = CTX_wm_region(C);
- float prevclick_f[2];
- copy_v2_v2(prevclick_f, op->customdata);
- const int prevclick[2] = {(int)prevclick_f[0], (int)prevclick_f[1]};
- int len = (int)len_v2v2_int(prevclick, event->mval);
+ float prev_click_f[2];
+ copy_v2_v2(prev_click_f, op->customdata);
+ const int prev_click[2] = {(int)prev_click_f[0], (int)prev_click_f[1]};
+ int len = (int)len_v2v2_int(prev_click, event->mval);
len = abs(len);
int mask_speed = RNA_int_get(op->ptr, "mask_speed");
int mask_expand_update_it = len / mask_speed;