From 41c9d344b4a598c7788828976573f3f9dd7c417b Mon Sep 17 00:00:00 2001 From: Matt Rose Date: Wed, 22 Mar 2023 17:43:04 -0400 Subject: [PATCH] fix drag and drop --- terminatorlib/terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py index 5add381b..914d69d7 100644 --- a/terminatorlib/terminal.py +++ b/terminatorlib/terminal.py @@ -1694,7 +1694,7 @@ class Terminal(Gtk.VBox): def feed(self, text): """Feed the supplied text to VTE""" - self.vte.feed_child(text.encode()) + self.vte.feed_child(text) def zoom_in(self): """Increase the font size"""