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

fix for Java 7 on Mac OSX

parent ffb81b30
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,8 @@ public class DocumentEntryAutosaveThread extends Thread { ...@@ -144,7 +144,8 @@ public class DocumentEntryAutosaveThread extends Thread {
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;
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment