diff options
-rw-r--r-- | ranger/core/actions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 4d9d4121..0596e1a6 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -187,6 +187,10 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): bucket.clear() current_depth += 1 + # Ask the browsercolumns to redraw + for col in self.ui.browser.columns: + col.need_redraw = True + def open_console(self, string='', prompt=None, position=None): """Open the console""" self.change_mode('normal') |