=== modified file 'src/shotwell_scope.py' --- src/shotwell_scope.py 2012-10-19 22:02:00 +0000 +++ src/shotwell_scope.py 2012-10-20 21:32:19 +0000 @@ -129,9 +129,14 @@ if not self.is_file (icon_hint): icon_hint = THUMB_CACHE + "thumbs360/" + thumb_id + "." + extension if not self.is_file (icon_hint): - icon_hint = i[1] + # Raw thumbs may be in .jpg even though the original isn't. Just in case. + icon_hint = THUMB_CACHE + "thumbs128/" + thumb_id + ".jpg" if not self.is_file (icon_hint): - icon_hint = "image" + icon_hint = THUMB_CACHE + "thumbs360/" + thumb_id + ".jpg" + if not self.is_file (icon_hint): + icon_hint = i[1] + if not self.is_file (icon_hint): + icon_hint = "image" title = i[0] comment = i[3] uri = "file://"+i[1]