ds820: We can't rewind A4x4 either

This commit is contained in:
Solomon Peachy 2020-09-01 23:28:02 -04:00
parent 3c4b54a083
commit f31e06802a
1 changed files with 3 additions and 3 deletions

View File

@ -1893,9 +1893,9 @@ parsed:
dnpds40_cleanup_job(job);
return CUPS_BACKEND_CANCEL;
}
/* A4xn and A5 can be rewound */
if (job->multicut == MULTICUT_A4x4 ||
job->multicut == MULTICUT_A4x5 ||
/* Only A4x4 and A5 can be rewound */
// XXX we can fake more with fancy multicuts...
if (job->multicut == MULTICUT_A4x5 ||
job->multicut == MULTICUT_A5)
job->can_rewind = 1;
break;