Fix closing grouped terminals. Close LP#1193484
This commit is contained in:
parent
d271137675
commit
423a44614a
|
@ -300,7 +300,7 @@ class Terminator(Borg):
|
|||
|
||||
def closegroupedterms(self, group):
|
||||
"""Close all terminals in a group"""
|
||||
for terminal in self.terminals:
|
||||
for terminal in self.terminals[:]:
|
||||
if terminal.group == group:
|
||||
terminal.close()
|
||||
|
||||
|
|
Loading…
Reference in New Issue