diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-09-27 08:20:20 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-09-27 08:20:20 +0200 |
commit | e94622c319e4307617b202f19d3ec05b21a9bb49 (patch) | |
tree | c5ddf44352b9bd47aeb3eb432ba79638079efe25 /backend/pixma_imageclass.c | |
parent | 6f2255c9648b175d51e2c8e5e9670557f9dc4ee1 (diff) |
merge to 1.0.25+git20150927
Diffstat (limited to 'backend/pixma_imageclass.c')
-rw-r--r-- | backend/pixma_imageclass.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/backend/pixma_imageclass.c b/backend/pixma_imageclass.c index f4bad37..b2d45ee 100644 --- a/backend/pixma_imageclass.c +++ b/backend/pixma_imageclass.c @@ -518,11 +518,8 @@ iclass_check_param (pixma_t * s, pixma_scan_param_t * sp) /* Some exceptions here for particular devices */ /* Those devices can scan up to Legal 14" with ADF, but A4 11.7" in flatbed */ - if (sp->source == PIXMA_SOURCE_FLATBED - && ( s->cfg->pid == MF4700_PID || - s->cfg->pid == MF4800_PID || - s->cfg->pid == MF8200_PID || - s->cfg->pid == MF8500_PID)) + /* PIXMA_CAP_ADF also works for PIXMA_CAP_ADFDUP */ + if ((s->cfg->cap & PIXMA_CAP_ADF) && sp->source == PIXMA_SOURCE_FLATBED) sp->h = MIN (sp->h, 877 * sp->xdpi / 75); return 0; |