summaryrefslogtreecommitdiff
path: root/backend/pixma_imageclass.c
diff options
context:
space:
mode:
Diffstat (limited to 'backend/pixma_imageclass.c')
-rw-r--r--backend/pixma_imageclass.c7
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;