summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2014-12-10 01:57:58 +0100
committerhut <hut@lepus.uberspace.de>2014-12-10 02:01:07 +0100
commit6cae0edfe17c1bf5f8c20c1cc430f7c605b0af78 (patch)
treea5a4768a353bf6e54ff3ec55f6dcbf9a0b42b2d7
parentd0414ecd2dde3a154e8ef71188de574916a92a1c (diff)
downloadranger-6cae0edfe17c1bf5f8c20c1cc430f7c605b0af78.tar.gz
config/commands.py: fix input delay, fixes #181
-rw-r--r--ranger/config/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py
index 1f59ee90..9a8a7934 100644
--- a/ranger/config/commands.py
+++ b/ranger/config/commands.py
@@ -1090,7 +1090,7 @@ class scout(Command):
             else:
                 self.fm.open_console(self.line[0:-len(pattern)])
 
-        if thisdir != self.fm.thisdir and pattern != "..":
+        if self.quickly_executed and thisdir != self.fm.thisdir and pattern != "..":
             self.fm.block_input(0.5)
 
     def cancel(self):
5'>115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154