16 Nov
2025
16 Nov
'25
5:10 p.m.
From: Bernd Herd <codeberg(a)herdsoft.com> --- dlls/sane.ds/ui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/sane.ds/ui.c b/dlls/sane.ds/ui.c index 51c7f54eea9..7c6222673e4 100644 --- a/dlls/sane.ds/ui.c +++ b/dlls/sane.ds/ui.c @@ -382,7 +382,8 @@ static LPDLGTEMPLATEW create_options_page(HDC hdc, int *from_index, return NULL; } } - if (!opt.is_active) + if (!opt.is_active || + (opt.type==TYPE_INT && opt.size!=sizeof(int))) continue; len = create_item(hdc, &opt, ID_BASE + i, &item_tpl, y, &x, &count); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9483