#16 expose columns, rows, font size
[nikiroo-utils.git] / src / jexer / TApplication.java
index d735e48b8da93d500451c3571f1d67d1837a605e..3907a9d15bda19c2bb636a0fe79e165012eb3f3b 100644 (file)
@@ -635,6 +635,12 @@ public class TApplication implements Runnable {
 
         switch (backendType) {
         case SWING:
+            // The default SwingBackend is 80x25, 20 pt font.  If you want to
+            // change that, you can pass the extra arguments to the
+            // SwingBackend constructor here.  For example, if you wanted
+            // 90x30, 16 pt font:
+            //
+            // backend = new SwingBackend(this, 90, 30, 16);
             backend = new SwingBackend(this);
             break;
         case XTERM: