GPencil Eraser: Do not allow eraser radius to get smaller than 1 pixel
This commit is contained in:
@@ -2145,8 +2145,8 @@ static int gpencil_draw_modal(bContext *C, wmOperator *op, const wmEvent *event)
|
||||
case PADMINUS:
|
||||
p->radius -= 5;
|
||||
|
||||
if (p->radius < 0)
|
||||
p->radius = 0;
|
||||
if (p->radius <= 0)
|
||||
p->radius = 1;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@@ -3774,7 +3774,7 @@ static void rna_def_userdef_edit(BlenderRNA *brna)
|
||||
|
||||
prop = RNA_def_property(srna, "grease_pencil_eraser_radius", PROP_INT, PROP_PIXEL);
|
||||
RNA_def_property_int_sdna(prop, NULL, "gp_eraser");
|
||||
RNA_def_property_range(prop, 0, 100);
|
||||
RNA_def_property_range(prop, 1, 500);
|
||||
RNA_def_property_ui_text(prop, "Grease Pencil Eraser Radius", "Radius of eraser 'brush'");
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user