Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 046b6d6

Browse files
author
Monte Goulding
authored
Merge pull request #1858 from BerndN/patch-1
[bug 17819] enable cmd+c in dictionary
2 parents 2f615eb + 322def0 commit 046b6d6

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

Toolset/palettes/dictionary/behaviors/revdictionarybehavior.livecodescript

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,12 @@ end navigateToEntry
8383
on linkClicked pLink
8484
launch url pLink
8585
end linkClicked
86+
87+
# bug 17819 enable cmd+c in dictionary
88+
on commandKeyDown pWhich
89+
if pWhich is "C" then
90+
copy
91+
else
92+
pass commandKeyDown
93+
end if
94+
end commandKeyDown

notes/bugfix-17819.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Enable cmd+c in dictionary

0 commit comments

Comments
 (0)