control-alt for menu selections probably shouldn't be
used under windows, so just give a menu shortcut under macosx and under windows rely on the underscore thingy
This commit is contained in:
parent
e14013670a
commit
f1a4aeedba
|
@ -363,10 +363,11 @@
|
|||
(make-an-item 'edit-menu 'find-from-selection
|
||||
'(string-constant find-info)
|
||||
'(λ (item control) (void))
|
||||
'(if (eq? (system-type) 'macosx)
|
||||
#\f
|
||||
'(cons (if (eq? (system-type) 'macosx)
|
||||
'option
|
||||
'alt )
|
||||
#f)
|
||||
'(if (eq? (system-type) 'macosx)
|
||||
(cons 'option (get-default-shortcut-prefix))
|
||||
(get-default-shortcut-prefix))
|
||||
'(string-constant find-from-selection-menu-item)
|
||||
edit-menu:edit-target-on-demand
|
||||
|
|
|
@ -737,7 +737,7 @@ please adhere to these guidelines:
|
|||
(select-all-menu-item "Select A&ll")
|
||||
|
||||
(find-menu-item "Find") ;; menu item
|
||||
(find-from-selection-menu-item "Find From Selection")
|
||||
(find-from-selection-menu-item "Find From S&election")
|
||||
(find-info "Toggles the keyboard focus between the window being searched and the search bar")
|
||||
|
||||
(find-next-info "Skip to the next occurrence of the string in the find window")
|
||||
|
|
Loading…
Reference in New Issue
Block a user