Start work on implementing multiple tab management

This commit is contained in:
Kovid Goyal
2016-12-07 08:22:24 +05:30
parent 26c7297de6
commit 6bfd6d6dbb
4 changed files with 91 additions and 12 deletions

View File

@@ -115,6 +115,9 @@ class Window:
def title_changed(self, new_title):
self.title = sanitize_title(new_title or appname)
t = self.tabref()
if t is not None:
t.title_changed(self)
glfw_post_empty_event()
def icon_changed(self, new_icon):