1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 15:04:13 +01:00

Fix reversed clipboard roles in dactyl.clipboardRead.

This commit is contained in:
Kris Maglione
2011-01-15 17:46:59 -05:00
parent ac3845feb2
commit 45636c6f2e
2 changed files with 2 additions and 2 deletions

View File

@@ -249,7 +249,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
transferable.addDataFlavor("text/unicode");
let source = clipboard[getClipboard || !clipboard.supportsSelectionClipboard() ?
"kSelectionClipboard" : "kGlobalClipboard"];
"kGlobalClipboard" : "kSelectionClipboard"];
clipboard.getData(transferable, source);
let str = {}, len = {};