Skip to content

Commit

Permalink
drag and drop error gnome-terminator#159
Browse files Browse the repository at this point in the history
  • Loading branch information
im-AMS committed Aug 26, 2020
1 parent 1ad579c commit 5de6207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terminatorlib/terminal.py
Expand Up @@ -1574,7 +1574,7 @@ def paste_clipboard(self, primary=False):

def feed(self, text):
"""Feed the supplied text to VTE"""
self.vte.feed_child_binary(text.encode(self.vte.get_encoding()))
self.vte.feed_child_binary(text.replace('file://','').replace('\r','').encode(self.vte.get_encoding()))

def zoom_in(self):
"""Increase the font size"""
Expand Down

0 comments on commit 5de6207

Please sign in to comment.