Code cleanup: Prevent possible int->float conversion

This commit is contained in:
Sergey Sharybin 2014-10-13 17:52:14 +02:00
parent fa021e3a44
commit 99a386da9e
1 changed files with 1 additions and 1 deletions

View File

@ -1167,7 +1167,7 @@ static bool slide_spline_curvature_check(bContext *C, const wmEvent *event)
{
Mask *mask = CTX_data_edit_mask(C);
float co[2];
const float threshold = 19;
const float threshold = 19.0f;
ED_mask_mouse_pos(CTX_wm_area(C), CTX_wm_region(C), event->mval, co);