1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-11 12:24:12 +01:00

Fix: Issue of escaping from hint mode.

This commit is contained in:
U-MAIN\anekos
2008-12-04 22:12:20 +09:00
parent 6c9fc50317
commit 9faab2c818

View File

@@ -180,12 +180,12 @@ const modes = (function () //{{{
// if a main mode is set, the extended is always cleared
if (typeof mainMode === "number")
{
if (!silent && mainMode != main)
handleModeChange(main, mainMode);
main = mainMode;
if (!extendedMode)
extended = modes.NONE;
if (!silent && mainMode != main)
handleModeChange(main, mainMode);
}
if (typeof extendedMode === "number")
extended = extendedMode;