mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
fix bad URLs
This commit is contained in:
@@ -761,7 +761,7 @@ public class Editor extends JFrame {
|
||||
item = new JMenuItem("Frequently Asked Questions");
|
||||
item.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
Base.openURL("http://processing.org/");
|
||||
Base.openURL("http://processing.org/faq.html");
|
||||
}
|
||||
});
|
||||
menu.add(item);
|
||||
@@ -769,7 +769,7 @@ public class Editor extends JFrame {
|
||||
item = newJMenuItem("Visit Processing.org", '5');
|
||||
item.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
Base.openURL("http://processing.org/faq.html");
|
||||
Base.openURL("http://processing.org/");
|
||||
}
|
||||
});
|
||||
menu.add(item);
|
||||
|
||||
Reference in New Issue
Block a user