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

fix for Java 7 on Mac OSX

parent 0d67f05c
No related branches found
No related tags found
No related merge requests found
...@@ -69,6 +69,7 @@ import javax.swing.JOptionPane; ...@@ -69,6 +69,7 @@ import javax.swing.JOptionPane;
protected static boolean isMac() protected static boolean isMac()
{ {
return System.getProperty("mrj.version") != null; return System.getProperty("mrj.version") != null ||
System.getProperty("os.name").toLowerCase().indexOf("mac") >= 0;
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment