Skip to content
Snippets Groups Projects
Commit 0d67f05c authored by tcarver's avatar tcarver
Browse files

fix for Java 7 on Mac OSX

parent 99124131
No related branches found
No related tags found
No related merge requests found
...@@ -324,7 +324,8 @@ abstract public class Splash extends JFrame ...@@ -324,7 +324,8 @@ abstract public class Splash extends JFrame
private boolean isMac() private boolean isMac()
{ {
return System.getProperty("mrj.version") != null; return System.getProperty("mrj.version") != null ||
System.getProperty("os.name").toLowerCase().indexOf("mac") >= 0;
} }
private boolean isWindows() private boolean isWindows()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment