Add versioned about box, set title
[fanfix.git] / src / jexer / backend / SwingBackend.java
index 3dbf01778d3785d166a52b3a9cfdd7cba48e4b7f..e7f4312b0858c7f35f15356acaaee7d5a5221d87 100644 (file)
@@ -91,4 +91,14 @@ public final class SwingBackend extends Backend {
         ((SwingScreen) screen).shutdown();
     }
 
+    /**
+     * Set the window title.
+     *
+     * @param title the new title
+     */
+    @Override
+    public void setTitle(final String title) {
+        ((SwingScreen) screen).setTitle(title);
+    }
+
 }