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:
parent
f4b1c2cce0
commit
82af1ddba8
|
@ -106,8 +106,6 @@ class Terminal(gtk.VBox):
|
||||||
self.terminator.register_terminal(self)
|
self.terminator.register_terminal(self)
|
||||||
|
|
||||||
self.connect('enumerate', self.terminator.do_enumerate)
|
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.connect('focus-in', self.terminator.focus_changed)
|
||||||
|
|
||||||
self.matches = {}
|
self.matches = {}
|
||||||
|
|
|
@ -317,16 +317,6 @@ class Terminator(Borg):
|
||||||
else:
|
else:
|
||||||
return([widget])
|
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):
|
def focus_changed(self, widget):
|
||||||
"""We just moved focus to a new terminal"""
|
"""We just moved focus to a new terminal"""
|
||||||
for terminal in self.terminals:
|
for terminal in self.terminals:
|
||||||
|
|
Loading…
Reference in New Issue