diff options
-rw-r--r-- | ranger/core/actions.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index d3f74e5c..dbfba502 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -129,7 +129,8 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): self.ui.redraw_window() def open_console(self, string='', prompt=None, position=None): - """Open the console if the current UI supports that""" + """Open the console""" + self.change_mode('normal') self.ui.open_console(string, prompt=prompt, position=position) def execute_console(self, string='', wildcards=[], quantifier=None): |