Closed
Bug 26404
Opened 25 years ago
Closed 25 years ago
editor keybinding file fire command conflict with ALT+Num pad key
Categories
(Core :: DOM: Editor, defect, P3)
Tracking
()
VERIFIED
FIXED
M14
People
(Reporter: ftang, Assigned: mjudge)
References
()
Details
refer to 25280 for the main problem. I file a new bug because that bug is
currently assign to hyatt for the general xul keybinding but we need mjudge to
change the keybinding for editor also.
I found the following xul file which have keybinding for the num pad '1'
(VK_END). Please change them so these command won't get fired when the ALT is down.
/xpfe/global/resources/content/inputBindings.xul, line 17 --
document.commandDispatcher.getControllerForCommand('cmd_endLine');
/xpfe/global/resources/content/inputBindings.xul, line 18 --
controller.doCommand('cmd_endLine');"/>
/xpfe/global/resources/content/editorBindings.xul, line 16 --
document.commandDispatcher.getControllerForCommand('cmd_endLine');
/xpfe/global/resources/content/editorBindings.xul, line 17 --
controller.doCommand('cmd_endLine');"/>
/xpfe/global/resources/content/textAreaBindings.xul, line 17 --
document.commandDispatcher.getControllerForCommand('cmd_endLine');
/xpfe/global/resources/content/textAreaBindings.xul, line 18 --
Comment 1•25 years ago
|
||
This is easy, Mike. Just add alt="false" to all of the end line bindings
(browserBindings.xul, editorBindings.xul, platformHTMLBindings.xul,
htmlBindings.xul).
While you're at it, you may as well patch Home, PageUp, and PageDown, since
those will all have the same problem. i guess maybe even Ins and Del will too?
| Reporter | ||
Comment 2•25 years ago
|
||
Please do that for those 9 keys in the num pad '0' (Ins) , '1' (end), '2'
(down), '3' (PgDn) , '4' (left), '6' (right) , '7' (home), '8' (up), '9' (PgUp)
fixed. hyatt and my change seem to have nailed this. also for shift and control
key illegal combinations have been stopped.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•