don't append the title, so it doesn't multiple up. Closes LP #393668
This commit is contained in:
parent
fc7b32a3a9
commit
fee8039fdc
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue