hp5400: Change defaults for -x, -y, -l, -t for full page scan.

Official doc says that the max length is 297 not 300 (which scans a bit of the plastic case at the bottom)
merge-requests/340/head
Ralph Little 2020-02-01 11:48:28 -08:00
rodzic 07e3d5d4d6
commit 93a0971576
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -196,12 +196,12 @@ static const SANE_Int setResolutions[] = {6, 75, 150, 300, 600, 1200, 2400};
#else
static const SANE_Int setResolutions[] = {5, 75, 150, 300, 600, 1200};
#endif
static const SANE_Range rangeXmm = {0, 220, 1};
static const SANE_Range rangeYmm = {0, 300, 1};
static const SANE_Range rangeXmm = {0, 216, 1};
static const SANE_Range rangeYmm = {0, 297, 1};
static const SANE_Range rangeXoffset = {0, 20, 1};
static const SANE_Range rangeYoffset = {0, 70, 1};
static const SANE_Int offsetX = 5;
static const SANE_Int offsetY = 52;
static const SANE_Int offsetX = 0;
static const SANE_Int offsetY = 0;
static void _InitOptions(TScanner *s)