diff options
author | Toon Nolten <toon.nolten@student.kuleuven.be> | 2018-05-16 15:39:59 +0200 |
---|---|---|
committer | Toon Nolten <toon.nolten@student.kuleuven.be> | 2018-05-16 15:39:59 +0200 |
commit | 75bf6abc67b50177292f16aa2042950b189895e9 (patch) | |
tree | 41e342aed28b9243babf5804454be2bfc1a659ec | |
parent | 3c430ba0f1b3fe2e17225788866f37bcd1f85c3b (diff) | |
download | ranger-75bf6abc67b50177292f16aa2042950b189895e9.tar.gz |
Actually check whether selection is a directory
`Actions.move()` used `enter_dir()` to determine whether the selection was a directory. Now we explicitly check whether it's a directory. Fixes #1177
-rw-r--r-- | ranger/core/actions.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 6bbb35aa..981df05b 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -483,9 +483,12 @@ class Actions( # pylint: disable=too-many-instance-attributes,too-many-public-m mode = narg tfile = self.thisfile selection = self.thistab.get_selection() - if not self.thistab.enter_dir(tfile) and selection: - result = self.execute_file(selection, mode=mode) - if result in (False, ASK_COMMAND): + if selection: + if selection.is_directory: + self.thistab.enter_dir(tfile) + else: + result = self.execute_file(selection, mode=mode) + if result in (False, ASK_COMMAND): self.open_console('open_with ') elif direction.vertical() and cwd.files: pos_new = direction.move( |