summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/defaults/apps.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ranger/defaults/apps.py b/ranger/defaults/apps.py
index 762bdc6e..f4d67285 100644
--- a/ranger/defaults/apps.py
+++ b/ranger/defaults/apps.py
@@ -140,14 +140,13 @@ class CustomApplications(Applications):
 
 		if c.mode in arg:
 			return tup('feh', arg[c.mode], c.file.path)
-		if c.mode is 4:		# Note: mode 4 wouldn't need to depend on 'feh'
-			return self.either(c, 'gimp')
 		if c.mode is 11:
 			if len(c.files) > 1:
 				return tup('feh', *c)
 			else:
 				from collections import deque
 
+				# Open all image files in feh
 				directory = self.fm.env.get_directory(c.file.dirname)
 				images = [f.path for f in directory.files if f.image]
 				position = images.index(c.file.path)