Open GoogleCodeExporter opened 9 years ago
It was the clipboard that crashed it, solved it by using the solution found in
issue 208 suggested by Paul and Ranju:
in /usr/lib/python2.7/dist-packages/autokey/scripting.py, change the following:
* Change this line in GtkClipboard's __fillSelection():
self.selection.set_text(string.encode("utf-8"))
to this:
self.selection.set_text(string.encode("utf-8"), -1)
* Change this line in GtkClipboard's fill_clipboard():
self.clipBoard.set_text(contents.encode("utf-8"))
to this:
self.clipBoard.set_text(contents.encode("utf-8"), -1)
Original comment by xmiqdb...@gmail.com
on 22 Sep 2014 at 8:10
Original issue reported on code.google.com by
xmiqdb...@gmail.com
on 22 Sep 2014 at 7:58