26 Nov
2024
26 Nov
'24
10:19 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/comctl32/combo.c:
if (lphc->dwStyle & CBS_NOINTEGRALHEIGHT) { - nDroppedHeight -= 1; + nDroppedHeight = min(nItems * nIHeight + COMBO_YBORDERSIZE(), nDroppedHeight - 1);
Shouldn't you consider if the items are visible like in the `else` branch? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6898#note_88896