diff --git a/terminatorlib/container.py b/terminatorlib/container.py index 75ca9c67..59acdb3b 100755 --- a/terminatorlib/container.py +++ b/terminatorlib/container.py @@ -260,6 +260,9 @@ the %s will also close all terminals within it.') % (reqtype, reqtype)) if hasattr(self, 'get_size'): layout['size'] = self.get_size() + if hasattr(self, 'title'): + layout['title'] = self.title.text + labels = [] if mytype == 'Notebook': for tabnum in xrange(0, self.get_n_pages()): diff --git a/terminatorlib/terminator.py b/terminatorlib/terminator.py index 29eaa97c..23af0003 100755 --- a/terminatorlib/terminator.py +++ b/terminatorlib/terminator.py @@ -249,6 +249,8 @@ class Terminator(Borg): winy = int(parts[1]) if winx > 1 and winy > 1: window.resize(winx, winy) + if layout[windef].has_key('title'): + window.title.force_title(layout[windef]['title']) def layout_done(self): """Layout operations have finished, record that fact"""