http://bugs.winehq.org/show_bug.cgi?id=27579
Daniel Jelinski djelinski1@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |djelinski1@gmail.com
--- Comment #28 from Daniel Jelinski djelinski1@gmail.com 2012-11-20 02:06:39 CST --- uTorrent in current wine looks the same as in the attachment from comment 8. There are several issues here: 1) the black background outside of the file list is caused by some doublebuffering issue. Commenting out all doublebuffering code brings back white background. 2) the black background of downloads is caused by custom draw not playing well with LVS_EX_FULLROWSELECT. For some reason uTorrent returns CDRF_SKIPDEFAULT when asked to paint the file name, which prevents painting background for the entire row in wine's comctl32. 3) the invisible file name. I don't know why it happens. Either uTorrent paints the item in incorrect place, or it doesn't paint it at all and returns CDRF_SKIPDEFAULT in error.
--- Comment #29 from Daniel Jelinski djelinski1@gmail.com 2013-02-11 15:08:09 CST --- Black background of torrent information is fixed by commit 80f70b5d85a3965d73840590bb5b38920b22fdc2. Invisible file name is most likely a bug in uTorrent's wine hacks - when they are disabled, file name shows up just fine. Someone should probably inform uTorrent author(s) about that. That leaves the doublebuffering issue. Any volunteers?