revert to default turning off of anti-alias on apple macintosh.
authorcmzmasek@gmail.com <cmzmasek@gmail.com@ca865154-3058-d1c3-3e42-d8f55a55bdbd>
Tue, 28 May 2013 20:01:58 +0000 (20:01 +0000)
committercmzmasek@gmail.com <cmzmasek@gmail.com@ca865154-3058-d1c3-3e42-d8f55a55bdbd>
Tue, 28 May 2013 20:01:58 +0000 (20:01 +0000)
forester/java/src/org/forester/archaeopteryx/Configuration.java

index 09ba61f..4aa85f2 100644 (file)
@@ -723,10 +723,10 @@ public final class Configuration {
     }
 
     boolean isAntialiasScreen() {
-        // if ( AptxUtil.isMac() ) {
-        // Apple Macintosh graphics are slow, turn off anti-alias.
-        // return false;
-        //}
+        if ( ForesterUtil.isMac() ) {
+            //Apple Macintosh graphics are slow, turn off anti-alias.
+            return false;
+        }
         return _antialias_screen;
     }