don't append the title, so it doesn't multiple up. Closes LP #393668

This commit is contained in:
Chris Jones 2009-07-14 00:47:55 +01:00
parent fc7b32a3a9
commit fee8039fdc
1 changed files with 1 additions and 2 deletions

View File

@ -41,7 +41,6 @@ except:
class TerminatorWindowTitle:
_window = None
_appname = APP_NAME.capitalize()
text = None
_forced = False
@ -66,7 +65,7 @@ class TerminatorWindowTitle:
if self._forced:
title = self.text
else:
title = "%s - %s" % (self.text, self._appname)
title = "%s" % self.text
self._window.set_title (title)