http://bugs.winehq.org/show_bug.cgi?id=59944 Bernhard Übelacker <bernhardu@mailbox.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bernhardu@mailbox.org --- Comment #14 from Bernhard Übelacker <bernhardu@mailbox.org> --- Created attachment 81585 --> http://bugs.winehq.org/attachment.cgi?id=81585 debugging.txt I tried to do some debugging here and got to this control gets created with a zero size, then a few times the text gets set, with a few LM_GETIDEALHEIGHT messages between. As far as I see the LM_GETIDEALSIZE calls SYSLINK_Render with a zero rectangle. The condition "rc.right - SL_LEFTMARGIN < 0" is not met because rc.right(0) minus SL_LEFTMARGIN(0) is only zero. Therefore the rendering is trying to have the minimal width and grows in height. The patch in following merge request changes this condition to "smaller or equal zero". That way the rendering is more greedy on the width than the height. https://gitlab.winehq.org/wine/wine/-/merge_requests/11481 Maybe you can give it a try, if it works for you. Unfortunately this is not explaining the randomness described previous comments. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.