Maybe have a look into /opt/waxmppplugin/bin/wazapp/ui.py -> getImageFiles() on line 410 (in my version) Thumbs are generated, if they don't exist, maybe this takes too long? I commented it out and for the last hour i had no infinite loop... i will test over the day and report. Code: #if not os.path.exists(crypto): # # Thumbnail does'n exist --> Generating... # if f.split(".")[-1] == "jpg" or f.split(".")[-1] == "JPG": # self.iface.Queue(str(url),"image/jpeg","grid", True) # elif f.split(".")[-1] == "png" or f.split(".")[-1] == "PNG": # self.iface.Queue(str(url),"image/png","grid", True) # elif f.split(".")[-1] == "gif" or f.split(".")[-1] == "GIF": # self.iface.Queue(str(url),"image/gif","grid", True) edit: no problems until now... btw: just noticed, editing works in TMO-app now, really cool
#if not os.path.exists(crypto): # # Thumbnail does'n exist --> Generating... # if f.split(".")[-1] == "jpg" or f.split(".")[-1] == "JPG": # self.iface.Queue(str(url),"image/jpeg","grid", True) # elif f.split(".")[-1] == "png" or f.split(".")[-1] == "PNG": # self.iface.Queue(str(url),"image/png","grid", True) # elif f.split(".")[-1] == "gif" or f.split(".")[-1] == "GIF": # self.iface.Queue(str(url),"image/gif","grid", True)