mirror of
https://github.com/processing/processing4.git
synced 2026-02-10 17:19:25 +01:00
allow dots in filename so ppl can make .pde/.java decision.. but sanitize
later.. also some tweaks for multi-file
This commit is contained in:
@@ -333,7 +333,7 @@ public class PdeEditorStatus extends JPanel implements ActionListener {
|
||||
//System.out.println("consuming event");
|
||||
event.consume();
|
||||
|
||||
} else if ((c == '_') ||
|
||||
} else if ((c == '_') || (c == '.') || // allow .pde and .java
|
||||
((c >= 'A') && (c <= 'Z')) ||
|
||||
((c >= 'a') && (c <= 'z'))) {
|
||||
// everything fine, catches upper and lower
|
||||
|
||||
Reference in New Issue
Block a user