diff options
author | hut <hut@lavabit.com> | 2010-04-16 17:21:14 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-04-16 17:21:14 +0200 |
commit | 60c5b88fc661e3fb87a290cb66a04523f9bf6c36 (patch) | |
tree | dea07a9000a8c325212534aa6091e66cfa6e05a9 | |
parent | 805e9d231f5bffea4f545382e32b918c5d0205d4 (diff) | |
download | ranger-60c5b88fc661e3fb87a290cb66a04523f9bf6c36.tar.gz |
core.actions: fix hints
-rw-r--r-- | ranger/core/actions.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 2fd7d46d..08947a8e 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -99,7 +99,9 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): self.log.appendleft(text) if hasattr(self.ui, 'notify'): self.ui.notify(text, duration=duration, bad=bad) - hint = notify + + def hint(self, text): + self.ui.status.hint = text def redraw_window(self): """Redraw the window""" |