Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Commit

Permalink
fixed shortcut function call
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioKusek authored and mikehardy committed Jan 15, 2019
1 parent 065926b commit 221968e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions chrome/thunderlink/content/thunderlink-overlay.xul
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/x-javascript" src="chrome://thunderlink/content/thunderlink.js"/>
<keyset>
<key id="cpCstTlStr1" modifiers="control alt" key="1" oncommand="ThunderLinkChromeNS.CopyCustomTlStringToClp(1);"/>
<key id="cpCstTlStr2" modifiers="control alt" key="2" oncommand="ThunderLinkChromeNS.CopyCustomTlStringToClp(2);"/>
<key id="cpCstTlStr3" modifiers="control alt" key="3" oncommand="ThunderLinkChromeNS.CopyCustomTlStringToClp(3);"/>
<key id="cpCstTlStr4" modifiers="control alt" key="4" oncommand="ThunderLinkChromeNS.CopyCustomTlStringToClp(4);"/>
<key id="cpCstTlStr5" modifiers="control alt" key="5" oncommand="ThunderLinkChromeNS.CopyCustomTlStringToClp(5);"/>
<key id="cpCstTlStr6" modifiers="control alt" key="6" oncommand="ThunderLinkChromeNS.CopyCustomTlStringToClp(6);"/>
<key id="cpCstTlStr7" modifiers="control alt" key="7" oncommand="ThunderLinkChromeNS.CopyCustomTlStringToClp(7);"/>
<key id="cpCstTlStr8" modifiers="control alt" key="8" oncommand="ThunderLinkChromeNS.CopyCustomTlStringToClp(8);"/>
<key id="cpCstTlStr1" modifiers="control alt" key="1" oncommand="ThunderLinkChromeNS.ActivateCustomTlString(1);"/>
<key id="cpCstTlStr2" modifiers="control alt" key="2" oncommand="ThunderLinkChromeNS.ActivateCustomTlString(2);"/>
<key id="cpCstTlStr3" modifiers="control alt" key="3" oncommand="ThunderLinkChromeNS.ActivateCustomTlString(3);"/>
<key id="cpCstTlStr4" modifiers="control alt" key="4" oncommand="ThunderLinkChromeNS.ActivateCustomTlString(4);"/>
<key id="cpCstTlStr5" modifiers="control alt" key="5" oncommand="ThunderLinkChromeNS.ActivateCustomTlString(5);"/>
<key id="cpCstTlStr6" modifiers="control alt" key="6" oncommand="ThunderLinkChromeNS.ActivateCustomTlString(6);"/>
<key id="cpCstTlStr7" modifiers="control alt" key="7" oncommand="ThunderLinkChromeNS.ActivateCustomTlString(7);"/>
<key id="cpCstTlStr8" modifiers="control alt" key="8" oncommand="ThunderLinkChromeNS.ActivateCustomTlString(8);"/>
<key id="openThunderlink" modifiers="accel alt" key="O" oncommand="ThunderLinkChromeNS.OpenThunderlinkFromClipboard()"/>
</keyset>
<popup id="mailContext">
Expand Down

0 comments on commit 221968e

Please sign in to comment.