Window titles, bug fixes in Doc interfaces, spelling fixes

svn: r713
This commit is contained in:
Don Allingham
2002-01-22 23:48:43 +00:00
parent 341099ecc5
commit e148f7df44
12 changed files with 105 additions and 52 deletions

View File

@ -251,7 +251,10 @@ class Gallery(ImageSelect):
name = utils.thumb_path(self.db.getSavePath(),object)
thumb = GdkImlib.Image(name)
self.icon_cache.append(thumb)
self.icon_list.append_imlib(thumb,object.getDescription())
description = object.getDescription()
if len(description) > 50:
description = "%s..." % description[0:50]
self.icon_list.append_imlib(thumb,description)
#-------------------------------------------------------------------------
#