1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 17:27:57 +01:00

Closes issue #945.

This commit is contained in:
Kris Maglione
2013-01-05 19:02:08 -08:00
parent b02c4b39e6
commit b8f67ba32c
2 changed files with 15 additions and 3 deletions

View File

@@ -202,11 +202,11 @@ var Browser = Module("browser", XPCOM(Ci.nsISupportsWeakReference, ModuleBase),
commands.add(["redr[aw]"],
"Redraw the screen",
function () {
window.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowUtils)
.redraw();
statusline.overLink = null;
statusline.updateStatus();
commandline.clear();
window.QueryInterface(Ci.nsIInterfaceRequestor).getInterface(Ci.nsIDOMWindowUtils)
.redraw();
},
{ argCount: "0" });
},