diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-03-03 09:54:51 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-03-03 09:54:51 +0100 |
commit | 44916ca6d75e0b5f258a098a50d659f31c6625fd (patch) | |
tree | 2e51a12ae43b3def9e55d3f2c9ca60d2032ad45c /backend/snapscan-options.c | |
parent | 84357741a6a6e6430f199b2c3f7498e0e97da9ad (diff) |
New upstream version 1.3.0upstream/1.3.0
Diffstat (limited to 'backend/snapscan-options.c')
-rw-r--r-- | backend/snapscan-options.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/backend/snapscan-options.c b/backend/snapscan-options.c index 719c1e4..310cb4b 100644 --- a/backend/snapscan-options.c +++ b/backend/snapscan-options.c @@ -138,6 +138,16 @@ static const SANE_Range y_range_tpo_default = SANE_FIX (0.0), SANE_FIX (180.0), 0 }; /* mm */ +/* TPO range for the Agfa Arcus 1200 */ +static const SANE_Range x_range_tpo_arcus = +{ + SANE_FIX (0.0), SANE_FIX (203.0), 0 +}; /* mm */ +static const SANE_Range y_range_tpo_arcus = +{ + SANE_FIX (0.0), SANE_FIX (254.0), 0 +}; /* mm */ + /* TPO range for the Agfa 1236 */ static const SANE_Range x_range_tpo_1236 = { @@ -330,6 +340,10 @@ static void init_options (SnapScan_Scanner * ps) x_range_tpo = x_range_tpo_3490; y_range_tpo = y_range_tpo_3490; break; + case ARCUS1200: + x_range_tpo = x_range_tpo_arcus; + y_range_tpo = y_range_tpo_arcus; + break; default: x_range_tpo = x_range_tpo_default; y_range_tpo = y_range_tpo_default; |