1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 18:47:58 +01:00

Use FORCE_SINGLELINE in a few more places

This commit is contained in:
Kris Maglione
2008-12-08 12:33:23 -05:00
parent ab730160bd
commit 29de1f0e8a
5 changed files with 11 additions and 12 deletions

View File

@@ -1036,7 +1036,7 @@ function Events() //{{{
break;
}
else
liberator.echo("Waiting for page to load...");
liberator.echomsg("Waiting for page to load...");
}
modes.show();
@@ -1236,7 +1236,7 @@ function Events() //{{{
{
modes.isRecording = false;
liberator.log("Recorded " + currentMacro + ": " + macros.get(currentMacro), 9);
liberator.echo("Recorded macro '" + currentMacro + "'");
liberator.echomsg("Recorded macro '" + currentMacro + "'");
event.preventDefault();
event.stopPropagation();
return true;
@@ -1259,7 +1259,7 @@ function Events() //{{{
if (key == "<C-c>" && !event.isMacro)
{
events.feedingKeys = false;
setTimeout(function () { liberator.echo("Canceled playback of macro '" + lastMacro + "'") }, 100);
setTimeout(function () { liberator.echomsg("Canceled playback of macro '" + lastMacro + "'") }, 100);
event.preventDefault();
event.stopPropagation();
return true;