diff options
author | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2019-03-10 21:45:44 +0100 |
---|---|---|
committer | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2019-03-10 21:45:44 +0100 |
commit | 6d56f200f2be981542ee71bc53defe62ed729f09 (patch) | |
tree | 6b2ef1a00e83736b1779e2e24da403f9f3549efd | |
parent | e0e0d5770f599ab928c91a53cc5bd805c16cce95 (diff) | |
download | ranger-6d56f200f2be981542ee71bc53defe62ed729f09.tar.gz |
Add a notification for the open_all_images autodisabling
-rw-r--r-- | ranger/core/actions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py index 6c98e363..75697696 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -467,6 +467,7 @@ class Actions( # pylint: disable=too-many-instance-attributes,too-many-public-m if err.errno == 7 and self.settings.open_all_images: old_value = self.settings.open_all_images try: + self.notify("Too many files: Disabling open_all_images temporarily.") self.settings.open_all_images = False return execute() finally: |