Add versioned about box, set title
[fanfix.git] / src / jexer / backend / ECMA48Backend.java
index 62fae34b609e25647b27f9bce1603d98542298f1..857985562b8fcc3de75bf235c3db4871fa3d5d05 100644 (file)
@@ -160,4 +160,14 @@ public final class ECMA48Backend extends Backend {
         terminal.shutdown();
     }
 
+    /**
+     * Set the window title.
+     *
+     * @param title the new title
+     */
+    @Override
+    public void setTitle(final String title) {
+        ((ECMA48Screen) screen).setTitle(title);
+    }
+
 }