don't show Changes page when running from command line (issue #1520)

This commit is contained in:
benfry
2012-12-23 15:06:10 +00:00
parent 91972d0e9d
commit 8eb8dc3b38
+4 -1
View File
@@ -1086,7 +1086,10 @@ public abstract class Editor extends JFrame implements RunnerListener {
static public void showChanges() {
Base.openURL("http://wiki.processing.org/w/Changes");
// http://code.google.com/p/processing/issues/detail?id=1520
if (!Base.isCommandLine()) {
Base.openURL("http://wiki.processing.org/w/Changes");
}
}