GPencil Eraser: Do not allow eraser radius to get smaller than 1 pixel

This commit is contained in:
Joshua Leung
2016-02-09 01:47:32 +13:00
parent eb9953abc0
commit 5136791de1
2 changed files with 3 additions and 3 deletions

View File

@@ -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;
}

View File

@@ -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'");