GPencil: Don't show error popup when strokes can't be reordered further

Was spawning error popup each time user tried to move a stroke higher or lower than the list allowed. We don't do that anywhere else and it's not really useful info for the user. So rather not bother her.
This commit is contained in:
Julian Eisel 2016-09-18 18:46:22 +02:00
parent 940f360479
commit c0aabeede8
1 changed files with 0 additions and 2 deletions

View File

@ -761,14 +761,12 @@ static int gp_stroke_arrange_exec(bContext *C, wmOperator *op)
/* some stroke is already at front*/
if ((direction == GP_STROKE_MOVE_TOP) || (direction == GP_STROKE_MOVE_UP)) {
if (gps == gpf->strokes.last) {
BKE_report(op->reports, RPT_ERROR, "Some selected stroke is already on top");
return OPERATOR_CANCELLED;
}
}
/* some stroke is already at botom */
if ((direction == GP_STROKE_MOVE_BOTTOM) || (direction == GP_STROKE_MOVE_DOWN)) {
if (gps == gpf->strokes.first) {
BKE_report(op->reports, RPT_ERROR, "Some selected stroke is already on bottom");
return OPERATOR_CANCELLED;
}
}