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

Only echo the download complete message in the active window.

--HG--
branch : testing
This commit is contained in:
Kris Maglione
2010-06-17 08:25:41 -04:00
parent a72c4af900
commit 05a3bcf180
2 changed files with 8 additions and 3 deletions

View File

@@ -340,7 +340,7 @@ const IO = Module("io", {
let file = download.targetFile.path;
let size = download.size;
liberator.echomsg("Download of " + title + " to " + file + " finished", 1);
liberator.echomsg("Download of " + title + " to " + file + " finished", 1, commandline.ACTIVE_WINDOW);
autocommands.trigger("DownloadPost", { url: url, title: title, file: file, size: size });
}
},