kopia lustrzana https://gitlab.com/sane-project/backends
Offset correction
rodzic
6c855b7662
commit
d7df235a7e
|
|
@ -548,7 +548,7 @@ init_options(const ESCL_Device *device, escl_sane_t *s)
|
|||
s->opt[OPT_TL_X].unit = SANE_UNIT_MM;
|
||||
s->opt[OPT_TL_X].constraint_type = SANE_CONSTRAINT_RANGE;
|
||||
s->opt[OPT_TL_X].constraint.range = &s->x_range;
|
||||
s->val[OPT_TL_X].w = 0;
|
||||
s->val[OPT_TL_X].w = s->x_range.min;
|
||||
|
||||
s->opt[OPT_TL_Y].name = SANE_NAME_SCAN_TL_Y;
|
||||
s->opt[OPT_TL_Y].title = SANE_TITLE_SCAN_TL_Y;
|
||||
|
|
@ -559,7 +559,7 @@ init_options(const ESCL_Device *device, escl_sane_t *s)
|
|||
s->opt[OPT_TL_Y].unit = SANE_UNIT_MM;
|
||||
s->opt[OPT_TL_Y].constraint_type = SANE_CONSTRAINT_RANGE;
|
||||
s->opt[OPT_TL_Y].constraint.range = &s->y_range;
|
||||
s->val[OPT_TL_Y].w = 0;
|
||||
s->val[OPT_TL_Y].w = s->y_range.min;
|
||||
|
||||
s->opt[OPT_BR_X].name = SANE_NAME_SCAN_BR_X;
|
||||
s->opt[OPT_BR_X].title = SANE_TITLE_SCAN_BR_X;
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue