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

@@ -161,3 +161,4 @@ x On Run/Debug Console is visible(ProblemsList hidden)
* Update wiki for Ctrl + H instead of Ctrl + J shortcuts
x update build.xml to produce dists
x Make this a contributed mode - mode.txt, github releases feature, version numbering, git tags, etc
x Add GitHub link to PDE X Menu

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;
}