many fixes
[nikiroo-utils.git] / src / jexer / session / AWTSessionInfo.java
index 088da9e009ea3c459163124008cab2b57a804f60..1c9bf97aaf22da574d7d9bb9f34fa7815d4e07e5 100644 (file)
@@ -36,7 +36,7 @@ import java.awt.Insets;
 /**
  * AWTSessionInfo provides a session implementation with a callback into an
  * AWT Frame to support queryWindowSize().  The username is blank, language
- * is "en_US", with a 80x24 text window.
+ * is "en_US", with a 132x40 text window.
  */
 public final class AWTSessionInfo implements SessionInfo {
 
@@ -68,12 +68,12 @@ public final class AWTSessionInfo implements SessionInfo {
     /**
      * Text window width.
      */
-    private int windowWidth = 80;
+    private int windowWidth = 132;
 
     /**
      * Text window height.
      */
-    private int windowHeight = 24;
+    private int windowHeight = 40;
 
     /**
      * Username getter.