Open GoogleCodeExporter opened 9 years ago
I'm not sure why it's not logging an error, but you can try adding the "-1"
value to what should be a default parameter that I suggested in this issue:
https://code.google.com/p/autokey/issues/detail?id=212
Original comment by pau...@zolabooks.com
on 4 Dec 2012 at 9:22
This also occurs with version 0.90.4 on Ubuntu 12.04 Precise.
Original comment by ranju.ma...@gmail.com
on 19 Jul 2013 at 1:08
I followed Paul's hint to do the following to resolve this issue:
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 ranju.ma...@gmail.com
on 19 Jul 2013 at 1:34
Original issue reported on code.google.com by
tpowe...@gmail.com
on 13 Jul 2012 at 9:17