From df43e672393536dc1e170e4ae3af8db06d8f821b Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 17 Jun 2010 14:08:54 +0100 Subject: [PATCH] Fix pasting so we always use our own paste method rather than VTE's so pasting with the keyboard shortcut works in groups --- terminatorlib/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index 591a57dd..93f9b7f3 100755 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -1326,7 +1326,7 @@ for %s (%s)' % (name, urlplugin.__class__.__name__)) self.vte.copy_clipboard() def key_paste(self): - self.vte.paste_clipboard() + self.paste_clipboard() def key_toggle_scrollbar(self): self.do_scrollbar_toggle()