31 Oct
2025
31 Oct
'25
4:30 p.m.
From: Bernd Herd <codeberg(a)herdsoft.com> --- dlls/sane.ds/ui.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/sane.ds/ui.c b/dlls/sane.ds/ui.c index 25a1cf33970..a8a0e13c760 100644 --- a/dlls/sane.ds/ui.c +++ b/dlls/sane.ds/ui.c @@ -281,6 +281,10 @@ static int create_item(HDC hdc, const struct option_descriptor *opt, tpl->cx = ctl_cx; } + if (class == 0x0085 && 0!=(styles & CBS_DROPDOWNLIST)) + { /* Drop-Down ComboBox */ + tpl->cy *= 10; + } ptr = (WORD *)(tpl + 1); *ptr++ = 0xffff; *ptr++ = class; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/9328