From 05e532309777f4d6ddc922e8fca6b66c388e2dbd Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 14 Jul 2009 00:15:34 +0100 Subject: [PATCH] fix the group_all hotkey --- terminatorlib/terminatorterm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/terminatorlib/terminatorterm.py b/terminatorlib/terminatorterm.py index 6791b448..c7987bdf 100755 --- a/terminatorlib/terminatorterm.py +++ b/terminatorlib/terminatorterm.py @@ -1664,8 +1664,7 @@ text/plain allname = _("All") self.add_group(allname) for term in self.terminator.term_list: - if term._group is None: - term.set_group (None, allname) + term.set_group (None, allname) self.terminator.group_hoover () def ungroup_all (self, widget):