Cleanup: style

This commit is contained in:
Campbell Barton
2014-10-06 21:49:38 +02:00
parent 15d2ab6812
commit cc02f929f9
3 changed files with 11 additions and 5 deletions

View File

@@ -5096,7 +5096,7 @@ static bool proj_paint_add_slot(bContext *C, wmOperator *op)
DAG_id_tag_update(&ma->id, 0);
ED_area_tag_redraw(CTX_wm_area(C));
return true;
return true;
}
}
@@ -5105,9 +5105,12 @@ static bool proj_paint_add_slot(bContext *C, wmOperator *op)
static int texture_paint_add_texture_paint_slot_exec(bContext *C, wmOperator *op)
{
if(proj_paint_add_slot(C, op))
if (proj_paint_add_slot(C, op)) {
return OPERATOR_FINISHED;
else return OPERATOR_CANCELLED;
}
else {
return OPERATOR_CANCELLED;
}
}

View File

@@ -271,7 +271,8 @@ void convertViewVec(TransInfo *t, float r_vec[3], int dx, int dy)
r_vec[0] = dx;
r_vec[1] = dy;
}
else { const float mval_f[2] = {(float)dx, (float)dy};
else {
const float mval_f[2] = {(float)dx, (float)dy};
ED_view3d_win_to_delta(t->ar, mval_f, r_vec, t->zfac);
}
}

View File

@@ -1711,7 +1711,9 @@ static void createTransLatticeVerts(TransInfo *t)
if (bp->f1 & SELECT) {
td->flag = TD_SELECTED;
}
else td->flag = 0;
else {
td->flag = 0;
}
copy_m3_m3(td->smtx, smtx);
copy_m3_m3(td->mtx, mtx);