From 82af1ddba8a465dc6b6b3ce803ee0a14e945df40 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 23 Mar 2010 21:40:03 +0000 Subject: [PATCH] We shouldn't need to push {un,}group_tab up to Terminator() and we haven't been handling it anyway --- terminatorlib/terminal.py | 2 -- terminatorlib/terminator.py | 10 ---------- 2 files changed, 12 deletions(-) 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: