diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index 8bed1685..759565e5 100755 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -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 = {} diff --git a/terminatorlib/terminator.py b/terminatorlib/terminator.py index 095b59aa..24459b41 100755 --- a/terminatorlib/terminator.py +++ b/terminatorlib/terminator.py @@ -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: