--- playlist.py     2004-07-16 23:17:18.000000000 -0400
+++ playlist_cng.py     2004-07-16 23:33:03.000000000 -0400
@@ -385,6 +385,11 @@
                 self.current_item = None
             return True

+        # For image items set a default display duration for automatic slideshows
+        if hasattr(self.current_item, 'type') and self.current_item.type == 'image':
+            if self.current_item.duration == 0 and hasattr(config,'SLIDESHOW_DURATION'):
+                self.current_item.duration = config.SLIDESHOW_DURATION
+
         if hasattr(self.current_item, 'play'):
             self.current_item.play(menuw=menuw)
         else: