change the new 'find from selection' menu item so that it uses

cmd-alt-f on the mac (and control-alt-f on windows/unix, I believe)
This commit is contained in:
Robby Findler 2012-08-19 18:04:14 -05:00
parent 40121d2531
commit e38e959145

View File

@ -364,7 +364,10 @@
'(string-constant find-info)
'(λ (item control) (void))
#\f
'(cons 'shift (get-default-shortcut-prefix))
'(cons (if (eq? (system-type) 'macosx)
'option
'alt )
(get-default-shortcut-prefix))
'(string-constant find-from-selection-menu-item)
edit-menu:edit-target-on-demand
#f)