diff options
author | Stew Benedict <stewb@mandriva.org> | 2003-02-13 14:10:22 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2003-02-13 14:10:22 +0000 |
commit | 71734e2e6b5e9566727834336a8f149c62c52dbb (patch) | |
tree | fb169c468c60fcfb472eb6bff6ed854bb10f1073 /perl-install/mouse.pm | |
parent | cfac1ad0a56ed9864c3e9af17490ec6bc05ba448 (diff) | |
download | drakx-71734e2e6b5e9566727834336a8f149c62c52dbb.tar drakx-71734e2e6b5e9566727834336a8f149c62c52dbb.tar.gz drakx-71734e2e6b5e9566727834336a8f149c62c52dbb.tar.bz2 drakx-71734e2e6b5e9566727834336a8f149c62c52dbb.tar.xz drakx-71734e2e6b5e9566727834336a8f149c62c52dbb.zip |
Mouse button emulation. Clarify L-Command, add Enter. (Ben Reser)
Diffstat (limited to 'perl-install/mouse.pm')
-rw-r--r-- | perl-install/mouse.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/mouse.pm b/perl-install/mouse.pm index babaa31f0..ac5f6e801 100644 --- a/perl-install/mouse.pm +++ b/perl-install/mouse.pm @@ -122,10 +122,11 @@ my %mouse_btn_keymap = ( 89 => "F14", 90 => "F15", 56 => "L-Option/Alt", - 125 => "L-Command", + 125 => "L-Command (Apple)", 98 => "Num: /", 55 => "Num: *", 117 => "Num: =", + 96 => "Enter", ); sub ppc_one_button_keys { keys %mouse_btn_keymap } sub ppc_one_button_key2text { $mouse_btn_keymap{$_[0]} } |