epsonds: use maximum area for ADF

merge-requests/1/head
Alessandro Zummo 2015-04-08 02:29:20 +02:00
rodzic 0d6f925e75
commit 2aed026154
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -418,8 +418,6 @@ static SANE_Status info_cb(void *userdata, char *token, int len)
int max = decode_value(value + 4 + 8, 8);
DBG(1, " ADF: area %dx%d @ 100dpi\n", min, max);
eds_set_adf_area(s->hw, min, max, 100);
}
if (strncmp("AMIN", value, 4) == 0) {
@ -436,6 +434,8 @@ static SANE_Status info_cb(void *userdata, char *token, int len)
int max = decode_value(value + 4 + 8, 8);
DBG(1, " ADF: max %dx%d @ 100dpi\n", min, max);
eds_set_adf_area(s->hw, min, max, 100);
}
}