Fix the alt menu conflict in a simple way,

suitable for the release branch
This commit is contained in:
Robby Findler 2014-01-03 18:10:38 -05:00 committed by Ryan Culpepper
parent 0cfeae7a30
commit 14a8299e87

View File

@ -755,8 +755,10 @@
(send frame next-tab))))])
(define mprefix (case (system-type)
[(windows unix)
[(windows)
(list* 'alt 'shift (get-default-shortcut-prefix))]
[(unix)
(remove-duplicates (list* 'alt 'shift (get-default-shortcut-prefix)))]
[(macosx)
(list* 'option (get-default-shortcut-prefix))]))