Fixed thumbnail problem
svn: r382
This commit is contained in:
parent
f91ede1657
commit
5c62a201c2
@ -188,7 +188,10 @@ class EditPlace:
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
def add_thumbnail(self,photo):
|
def add_thumbnail(self,photo):
|
||||||
src = os.path.basename(photo.getPath())
|
src = os.path.basename(photo.getPath())
|
||||||
thumb = "%s%s.thumb%s%s" % (self.path,os.sep,os.sep,src)
|
if photo.getPrivate():
|
||||||
|
thumb = "%s%s.thumb%s%s" % (self.path,os.sep,os.sep,src)
|
||||||
|
else:
|
||||||
|
thumb = "%s%s.thumb%s%s.jpg" % (self.path,os.sep,os.sep,os.path.basename(src))
|
||||||
RelImage.check_thumb(src,thumb,const.thumbScale)
|
RelImage.check_thumb(src,thumb,const.thumbScale)
|
||||||
self.photo_list.append(thumb,photo.getDescription())
|
self.photo_list.append(thumb,photo.getDescription())
|
||||||
|
|
||||||
|
@ -107,7 +107,10 @@ class EditSource:
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
def add_thumbnail(self,photo):
|
def add_thumbnail(self,photo):
|
||||||
src = os.path.basename(photo.getPath())
|
src = os.path.basename(photo.getPath())
|
||||||
thumb = "%s%s.thumb%s%s" % (self.path,os.sep,os.sep,src)
|
if photo.getPrivate():
|
||||||
|
thumb = "%s%s.thumb%s%s" % (self.path,os.sep,os.sep,src)
|
||||||
|
else:
|
||||||
|
thumb = "%s%s.thumb%s%s.jpg" % (self.path,os.sep,os.sep,os.path.basename(src))
|
||||||
RelImage.check_thumb(src,thumb,const.thumbScale)
|
RelImage.check_thumb(src,thumb,const.thumbScale)
|
||||||
self.photo_list.append(thumb,photo.getDescription())
|
self.photo_list.append(thumb,photo.getDescription())
|
||||||
|
|
||||||
|
@ -170,7 +170,10 @@ class Marriage:
|
|||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
def add_thumbnail(self,photo):
|
def add_thumbnail(self,photo):
|
||||||
src = os.path.basename(photo.getPath())
|
src = os.path.basename(photo.getPath())
|
||||||
thumb = "%s%s.thumb%s%s" % (self.path,os.sep,os.sep,src)
|
if photo.getPrivate():
|
||||||
|
thumb = "%s%s.thumb%s%s" % (self.path,os.sep,os.sep,src)
|
||||||
|
else:
|
||||||
|
thumb = "%s%s.thumb%s%s.jpg" % (self.path,os.sep,os.sep,os.path.basename(src))
|
||||||
RelImage.check_thumb(src,thumb,const.thumbScale)
|
RelImage.check_thumb(src,thumb,const.thumbScale)
|
||||||
self.photo_list.append(thumb,photo.getDescription())
|
self.photo_list.append(thumb,photo.getDescription())
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user