diff options
author | hut <hut@lavabit.com> | 2011-10-17 17:22:38 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-10-17 17:22:38 +0200 |
commit | 9b2de75f3289c7a0281cc48bf55248b0ac174a55 (patch) | |
tree | b32689bb360d4d04d39f4e29c7098cf685101e82 | |
parent | cfb9044407481344136f8fa4e3700fe3df7efa4c (diff) | |
download | ranger-9b2de75f3289c7a0281cc48bf55248b0ac174a55.tar.gz |
emit a signal when a directory finishes loading content
-rw-r--r-- | ranger/fsobject/directory.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ranger/fsobject/directory.py b/ranger/fsobject/directory.py index 9cfbb6c0..b3a35a0a 100644 --- a/ranger/fsobject/directory.py +++ b/ranger/fsobject/directory.py @@ -255,6 +255,7 @@ class Directory(FileSystemObject, Accumulator, Loadable, SettingsAware): finally: self.loading = False + self.fm.signal_emit("finished_loading_dir", directory=self) def unload(self): self.loading = False |