* src/const.py.in: Disable thumbnailer for Windows.

svn: r7267
This commit is contained in:
Brian Matherly 2006-08-26 02:46:40 +00:00
parent 8755164dad
commit 259d0678ae
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2006-08-25 Brian Matherly <brian@gramps-project.org>
* src/const.py.in: Disable thumbnailer for Windows.
2006-08-25 Don Allingham <don@gramps-project.org>
* src/DisplayModels/_MediaModel.py (MediaModel.sort_date): add
sorting by date value instead of by text string

View File

@ -130,7 +130,10 @@ papersize = "file:%s/papersize.xml" % data_dir
startup = 1
dnd_images = 1
use_tips = False
use_thumbnailer= True
if os.sys.platform == "win32":
use_thumbnailer = False
else:
use_thumbnailer= True
#-------------------------------------------------------------------------
#