X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbackend%2FECMA48Backend.java;h=24357bb11841aad529379bd718313d1924c24297;hb=a325f111c91ec64c0bb0319dedd18d36f4b720c9;hp=62fae34b609e25647b27f9bce1603d98542298f1;hpb=6985c57265a980ceeb8cb10a8677fe387adb3eb7;p=fanfix.git diff --git a/src/jexer/backend/ECMA48Backend.java b/src/jexer/backend/ECMA48Backend.java index 62fae34..24357bb 100644 --- a/src/jexer/backend/ECMA48Backend.java +++ b/src/jexer/backend/ECMA48Backend.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2016 Kevin Lamonte + * Copyright (C) 2017 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -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); + } + }