http://bugs.winehq.org/show_bug.cgi?id=22083
--- Comment #13 from Roderick Colenbrander thunderbird2k@gmail.com 2010-03-21 07:25:21 --- I have a feeling that this part is wrong: if (rect_in) rect = *rect_in; else { rect.left = 0; rect.top = 0; rect.right = w; rect.bottom = h; }
Change the else-part to: { rect.left = 0; rect.top = h; rect.right = w; rect.bottom = 0; }