* src/const.py.in: Disable thumbnailer for Windows.
svn: r7267
This commit is contained in:
parent
8755164dad
commit
259d0678ae
@ -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
|
||||
|
@ -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
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user