projects
/
indicator-chars.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a988ac1
)
add a char copy into Clipboard(selection="CLIPBOARD")
author
Cyrille Giquello
<cyrille37@gmail.com>
Tue, 23 Oct 2012 21:23:40 +0000
(23:23 +0200)
committer
Cyrille Giquello
<cyrille37@gmail.com>
Tue, 23 Oct 2012 21:23:40 +0000
(23:23 +0200)
indicator-chars.py
patch
|
blob
|
blame
|
history
diff --git
a/indicator-chars.py
b/indicator-chars.py
index
50fcee6
..
d293643
100755
(executable)
--- a/
indicator-chars.py
+++ b/
indicator-chars.py
@@
-119,6
+119,8
@@
class IndicatorChars:
def on_char_click(self, widget, char):
cb = gtk.Clipboard(selection="PRIMARY")
cb.set_text(char)
+ cb = gtk.Clipboard(selection="CLIPBOARD")
+ cb.set_text(char)
def on_quit(self, widget):
gtk.main_quit()