mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
bug fixes
X fill(#ffcc00) wasn't working for rect, calci not being set X also affected background and stroke X export was failing if no data dir X move background() out of draw() for draw mode apps X click on project name to quickly go to rename mode
This commit is contained in:
@@ -1076,7 +1076,8 @@ public class PdeEditor extends Panel {
|
||||
}
|
||||
|
||||
// files to include
|
||||
if (dataDir != null) {
|
||||
//if (dataDir != null) {
|
||||
if ((dataDir != null) && (dataDir.exists())) {
|
||||
String datafiles[] = dataDir.list();
|
||||
for (int i = 0; i < datafiles.length; i++) {
|
||||
if (datafiles[i].equals(".") || datafiles[i].equals("..")) {
|
||||
|
||||
Reference in New Issue
Block a user