TEditor 80% complete
[fanfix.git] / src / jexer / demos / DemoEditorWindow.java
index f04916a1df1a933f7ab0f495dfbaae22a631f674..005383135521ac619ee2c6173737b87789b97c6b 100644 (file)
@@ -34,7 +34,7 @@ import static jexer.TCommand.*;
 import static jexer.TKeypress.*;
 
 /**
- * This window demonstates the TText, THScroller, and TVScroller widgets.
+ * This window demonstates the TEditor widget.
  */
 public class DemoEditorWindow extends TWindow {
 
@@ -56,10 +56,9 @@ public class DemoEditorWindow extends TWindow {
         super(parent, title, 0, 0, 44, 22, RESIZABLE);
         editField = addEditor(text, 0, 0, 42, 20);
 
-        statusBar = newStatusBar("Editable text window");
+        statusBar = newStatusBar("Editable text demo window");
         statusBar.addShortcutKeypress(kbF1, cmHelp, "Help");
         statusBar.addShortcutKeypress(kbF2, cmShell, "Shell");
-        statusBar.addShortcutKeypress(kbF3, cmOpen, "Open");
         statusBar.addShortcutKeypress(kbF10, cmExit, "Exit");
     }