Add GitHub link to PDE X Menu

This commit is contained in:
Manindra Moharana
2013-09-17 23:45:04 +05:30
parent a3b94b7218
commit b2997f5f08
2 changed files with 11 additions and 1 deletions

View File

@@ -606,7 +606,16 @@ public class DebugEditor extends JavaEditor implements ActionListener {
});
debugMenu.add(writeErrorLog);
debugMenu.addSeparator();
JMenuItem jitem = new JMenuItem("PDE X on GitHub");
jitem.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Base.openURL("https://github.com/processing/processing-experimental");
}
});
debugMenu.add(jitem);
return debugMenu;
}