We shouldn't need to push {un,}group_tab up to Terminator() and we haven't been handling it anyway

This commit is contained in:
Chris Jones 2010-03-23 21:40:03 +00:00
parent f4b1c2cce0
commit 82af1ddba8
2 changed files with 0 additions and 12 deletions

View File

@ -106,8 +106,6 @@ class Terminal(gtk.VBox):
self.terminator.register_terminal(self)
self.connect('enumerate', self.terminator.do_enumerate)
self.connect('group-tab', self.terminator.group_tab)
self.connect('ungroup-tab', self.terminator.ungroup_tab)
self.connect('focus-in', self.terminator.focus_changed)
self.matches = {}

View File

@ -317,16 +317,6 @@ class Terminator(Borg):
else:
return([widget])
def group_tab(self, widget):
"""Group all the terminals in a tab"""
# FIXME: Implement or drop
pass
def ungroup_tab(self, widget):
"""Ungroup all the terminals in a tab"""
# FIXME: Implement or drop
pass
def focus_changed(self, widget):
"""We just moved focus to a new terminal"""
for terminal in self.terminals: