WIP: GPv3: Select Circle operator #108815

Closed
Gangneron wants to merge 14 commits from (deleted):gpv3-select-circle into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 1 additions and 1 deletions
Showing only changes of commit cc4fe3e6d2 - Show all commits

View File

@ -4920,7 +4920,7 @@ static bool obedit_circle_select(bContext *C,
changed = mball_circle_select(vc, sel_op, mval, rad);
break;
case OB_GREASE_PENCIL:{
int grease_pencil_circle_select;
static int grease_pencil_circle_select;

Here you need to call the function you defined. Like so:

changed = grease_pencil_circle_select(vc, sel_op, mval, rad);
Here you need to call the function you defined. Like so: ``` changed = grease_pencil_circle_select(vc, sel_op, mval, rad); ```
break;
case OB_CURVES: {