closing in on rev 10

This commit is contained in:
benfry
2001-11-28 04:46:40 +00:00
parent 238c7930b0
commit ede6fc7faa
3 changed files with 81 additions and 58 deletions

View File

@@ -123,16 +123,10 @@ public class PdeEditor extends Panel implements PdeEnvironment {
TextArea console = new TextArea("welcome to pr0[3551ng", 5, 48,
TextArea.SCROLLBARS_VERTICAL_ONLY);
console.setBackground(Color.gray);
console.setFont(PdeApplet.getFont("editor"));
add("South", console);
*/
//#ifdef FANCY
// right.add("South", PdeFancy.makeDescription());
//#endif
//this.add("West", left);
//this.add("Center", right);
if (!PdeApplet.isMacintosh()) { // this still relevant?
PdeEditorListener listener = new PdeEditorListener();
textarea.addKeyListener(listener);
@@ -140,7 +134,7 @@ public class PdeEditor extends Panel implements PdeEnvironment {
textarea.addKeyListener(new PdeKeyListener(this));
}
runner = new PdeRunner(/*graphics,*/ this);
runner = new PdeRunner(this);
}