From 813f1c70b7957dd4385919f992d76eb063cdb189 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 4 Apr 2019 15:12:21 +0300 Subject: [PATCH] fix(listeners) any touch open file (#235) --- client/listeners/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/listeners/index.js b/client/listeners/index.js index a9cea40a..ffc4d8c5 100644 --- a/client/listeners/index.js +++ b/client/listeners/index.js @@ -287,7 +287,7 @@ function onTouch(event) { const isDir = DOM.isCurrentIsDir(current); if (!isDir) - return CloudCmd.View.show(); + return; const isCurrent = DOM.isCurrentFile(current);