diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2024-03-03 09:55:14 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2024-03-03 09:55:14 +0100 |
commit | b098beb219b0b300ec7eb915bfa2b3038c3fb533 (patch) | |
tree | 08c40dc8b180b31f504945e8da3e3ea3950e4145 /backend/snapscan-options.c | |
parent | 2938695ca4c9bca7834817465662e31570f6d32f (diff) | |
parent | 23c348d62ab9f0a902189c70921310a5f856852c (diff) |
Merge branch 'feature/upstream' into develop
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; |