Index: Font.cs =================================================================== RCS file: /cvsroot/dotgnu-pnet/pnetlib/Xsharp/Font.cs,v retrieving revision 1.18 diff -u -r1.18 Font.cs --- Font.cs 18 Oct 2004 07:54:45 -0000 1.18 +++ Font.cs 7 Dec 2004 17:04:44 -0000 @@ -731,6 +731,10 @@ // that we don't get unsightly stretching. internal static int NormalizePointSize(int pointSize) { + // No need for normalization if using Xft + if (Xlib.XSharpUseXft () != 0) + return pointSize; + if(pointSize < 90) { return 80;