1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-23 23:45:45 +01:00

don't beep in input boxes

This commit is contained in:
Martin Stubenschrott
2008-06-08 01:41:41 +00:00
parent 772ab13dee
commit 1742c9cd44
3 changed files with 5 additions and 19 deletions

View File

@@ -1323,7 +1323,7 @@ liberator.Events = function () //{{{
if (!(liberator.modes.extended & liberator.modes.INPUT_MULTILINE))
liberator.commandline.onEvent(event); // reroute event in command line mode
}
else // NORMAL mode, no liberator mapping
else if (liberator.mode != liberator.modes.INSERT && liberator.mode != liberator.modes.TEXTAREA)
liberator.beep();
}
}