Update of /cvsroot/freevo/freevo/src/video
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18031

Modified Files:
        videoitem.py 
Log Message:
Allow the user to create a thumbnail for a file even if a folder or file
image already exists. For example, I have a generic "cover.jpg" in my
movie folder, but I will occaisonally use the thumbnailing for a file in 
that directory. This 'if' clause prevents that from being possible. 


Index: videoitem.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/video/videoitem.py,v
retrieving revision 1.137
retrieving revision 1.138
diff -C2 -d -r1.137 -r1.138
*** videoitem.py        29 May 2004 13:10:55 -0000      1.137
--- videoitem.py        23 Jun 2004 12:22:16 -0000      1.138
***************
*** 11,14 ****
--- 11,20 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.138  2004/06/23 12:22:16  outlyer
+ # Allow the user to create a thumbnail for a file even if a folder or file
+ # image already exists. For example, I have a generic "cover.jpg" in my
+ # movie folder, but I will occaisonally use the thumbnailing for a file in
+ # that directory. This 'if' clause prevents that from being possible.
+ #
  # Revision 1.137  2004/05/29 13:10:55  dischi
  # re-use string for better translation
***************
*** 308,312 ****
              items = [ (self.show_variants, _('Show variants')) ] + items
  
!         if not self.image and self.mode == 'file' and not self.variants and not 
self.subitems:
              items.append((self.create_thumbnail, _('Create Thumbnail'), 
'create_thumbnail'))
              
--- 314,318 ----
              items = [ (self.show_variants, _('Show variants')) ] + items
  
!         if self.mode == 'file' and not self.variants and not self.subitems:
              items.append((self.create_thumbnail, _('Create Thumbnail'), 
'create_thumbnail'))
              



-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to