Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
script "revDictionaryBehavior"
script "revDictionaryBehavior" with behavior "revPaletteBehavior"
-- The dictionary starts to hide elements at lower than 992 pixels
-- *TODO* Tweak the CSS to rearrange things appropriately
constant kDictionaryMinWidth = 992
Expand Down Expand Up @@ -93,5 +93,11 @@ end showUpgradeOptions

# bug 17819 enable cmd+c in dictionary
on commandKeyDown pWhich
if pWhich is not "C" then pass commandKeyDown
if pWhich is not "C" then
if pWhich is "W" then
close me
else
pass commandKeyDown
end if
end if
end commandKeyDown
1 change: 1 addition & 0 deletions notes/bugfix-20647.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Ensure Dictionary responds to cmd+W shortcut