summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/core/actions.py4
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"""
2496a2'>^
1076f2b

















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25