diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-03-03 09:55:03 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-03-03 09:55:03 +0100 |
commit | 23c348d62ab9f0a902189c70921310a5f856852c (patch) | |
tree | 08c40dc8b180b31f504945e8da3e3ea3950e4145 /backend/snapscan-options.c | |
parent | 2938695ca4c9bca7834817465662e31570f6d32f (diff) | |
parent | 44916ca6d75e0b5f258a098a50d659f31c6625fd (diff) |
Update upstream source from tag 'upstream/1.3.0'
Update to upstream version '1.3.0'
with Debian dir ab14a3d39c8a7f8e08536efd939bb78110db77f3
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; |