http://bugs.winehq.org/show_bug.cgi?id=22765
--- Comment #15 from Igor Tarasov tarasov.igor@gmail.com 2010-05-24 02:37:26 --- This bug is not invalid.
Try changing rgba value in your .fonts.conf from "rgb" to "none". This field does not mean "no smoothing", but rather, "no subpixel smoothing". But wine stops smoothing at all when rgba gets equal to none.
Confirmed on Xubuntu 10.04 with big CRT monitor. :)
Ha! Got the bug. http://source.winehq.org/git/wine.git/?a=blob;f=dlls/winex11.drv/xrender.c;h...
Line 954: case FC_RGBA_NONE: entry->aa_default = AA_None; break;
Should read: case FC_RGBA_NONE: entry->aa_default = AA_Grey; break;