about summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-01-13 19:02:40 +0100
committerhut <hut@lavabit.com>2010-01-13 19:02:40 +0100
commite7733577e2ff3c4451a8dbcf03e3f34ee3934b85 (patch)
tree86b72b1c84f93adf83024914e02feee697478934 /ranger
parent509afd70d100d5649e8df4695d14f0424695d409 (diff)
downloadranger-e7733577e2ff3c4451a8dbcf03e3f34ee3934b85.tar.gz
defaultui: clear statusbar message when opening console
Diffstat (limited to 'ranger')
-rw-r--r--ranger/gui/defaultui.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ranger/gui/defaultui.py b/ranger/gui/defaultui.py
index ebebe638..407b2d9a 100644
--- a/ranger/gui/defaultui.py
+++ b/ranger/gui/defaultui.py
@@ -95,6 +95,7 @@ class DefaultUI(UI):
 	
 	def open_console(self, mode, string=''):
 		if self.console.open(mode, string):
+			self.status.msg = None
 			self.console.on_close = self.close_console
 			self.console.visible = True
 			self.status.visible = False
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179