From ec68e7731c7a75e098bcda7c378808da103efdce Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 4 Oct 2010 09:33:12 -0400 Subject: [PATCH] Always close the Actor after dispatching the action. --- web_frontend/actor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_frontend/actor.js b/web_frontend/actor.js index ba6cfa3..8517031 100644 --- a/web_frontend/actor.js +++ b/web_frontend/actor.js @@ -154,13 +154,13 @@ armadillo.Actor.prototype.tileClickHandler_ = function(e) { if (option == armadillo.Actor.options_.OPEN) { // TODO: assert that this.file_.isDirectory(). app.navigate(this.file_.getName()); - this.hide(); } else if (option == armadillo.Actor.options_.MOVE || option == armadillo.Actor.options_.RENAME) { this.performMove_(); } else if (option == armadillo.Actor.options_.DELETE) { this.performDelete_(); } + this.hide(); }; /** -- 2.22.5