Merge pull request #728 from mattrose/727-fixdnd

fix drag and drop
This commit is contained in:
Matt Rose 2023-03-22 17:51:29 -04:00 committed by GitHub
commit 6592e2bda1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"""