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

move the find error message to the end of the event queue so it's not cleared

prematurely
This commit is contained in:
Doug Kearns
2007-11-22 12:33:54 +00:00
parent 81d4336ccb
commit a09691d658

View File

@@ -145,7 +145,7 @@ vimperator.Search = function () //{{{
found = fastFind.find(searchString, linksOnly) != Components.interfaces.nsITypeAheadFind.FIND_NOTFOUND;
if (!found)
vimperator.echoerr("E486: Pattern not found: " + searchPattern);
setTimeout(function () { vimperator.echoerr("E486: Pattern not found: " + searchPattern); }, 0);
return found;
},