summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index 5b824476..d5d38de9 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -304,10 +304,8 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 		mimetype = files[0].mimetype if files else None
 		label = kw['label'] if 'label' in kw else None
 		try:
-			self.ui.suspend()
 			return self.rifle.execute(filenames, mode, label, mimetype)
 		finally:
-			self.ui.initialize()
 			self.signal_emit('execute.after')
 
 	# --------------------------