Commit facb2ac3 authored by Dan Pascu's avatar Dan Pascu

Fixed encoding of cut text for the VNC client

parent d15ccabb
......@@ -190,6 +190,6 @@ class VNCClient(QObject):
def _EH_RFBCutTextEvent(self, event):
if self.rfb_client is not None:
self.rfb_client.send_client_cut_text(event.text)
self.rfb_client.send_client_cut_text(event.text.encode('utf8'))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment