From 5e104972a763a077e1c7961440575ed68721fc7b Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sat, 21 Nov 2009 12:11:50 -0600 Subject: [PATCH] Fix keybinding for closing ourself --- terminatorlib/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index 9405f2d4..7e16ce9d 100755 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -961,7 +961,7 @@ class Terminal(gtk.VBox): self.emit('split-vert') def key_close_term(self): - self.terminator.closeterm (self) + self.close() def key_new_tab(self): self.terminator.newtab(self)