diff options
-rw-r--r-- | ranger/core/actions.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 2d9546be..88ee9d83 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -100,9 +100,6 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): if hasattr(self.ui, 'notify'): self.ui.notify(text, duration=duration, bad=bad) - def hint(self, text): - self.ui.status.hint = text - def redraw_window(self): """Redraw the window""" self.ui.redraw_window() @@ -235,6 +232,9 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): return self.execute_file(file, app = 'editor') + def hint(self, text): + self.ui.hint(text) + def toggle_boolean_option(self, string): """Toggle a boolean option named <string>""" if isinstance(self.env.settings[string], bool): |