mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 18:10:43 +01:00
Add GitHub link to PDE X Menu
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user