1 Apr 2005 15:49
Re: [j-users] Minority problem? Need to disable antialiasing under MacOSX
Peter Graves <peter <at> armedbear.org>
2005-04-01 13:49:22 GMT
2005-04-01 13:49:22 GMT
On Fri, 01 Apr 2005 at 02:37:50 +0200, stso <at> gmx.at wrote:
> But .. unfortunately, my special need is to _disable_ antialiasing on
> the Mac powerbook that I (have to) use sometimes.
>
> I selected the appropriate settings in Tinker Tools, now each and
> every application uses non-antialiased fonts ... except J....
>
> Is there anything that can be done about that?
>
> Of course I tried the antialias key in .j/prefs. No effect.
That's odd.
The antialias property defaults to false (Property.java:88), and it
will stay false unless you put a line like this in ~/.j/prefs:
antialias = true
All the places that j turns on antialiasing are in Display.java (search
for "antialias" and you'll find them), and they're all controlled by
the aforementioned antialias property.
So unless you change ~/.j/prefs to turn on antialiasing, j is simply
using the default settings for the version of Java you're using and the
platform you're on.
It's entirely possible that the version of Java you're using on OS X
turns on antialiasing by default, and there may be some specific magic
you can do to turn it off. Maybe there's a property you can set on the
command line that runs Java when you start up j, or there might even be
(Continue reading)
RSS Feed