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:
benfry
2002-08-02 00:01:24 +00:00
parent ec5cef819e
commit dddd05742c
5 changed files with 100 additions and 38 deletions

View File

@@ -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("..")) {