mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Fix to support equivalent image file extensions
This commit is contained in:
parent
23f41d9553
commit
d15ff23d49
1 changed files with 4 additions and 3 deletions
|
@ -85,14 +85,15 @@ CARDSET = _("cardset")
|
|||
|
||||
IMAGE_EXTENSIONS = (".gif", ".ppm", ".png")
|
||||
if 1 and os.name == "nt":
|
||||
IMAGE_EXTENSIONS = (".png", ".gif", ".ppm", ".jpg",)
|
||||
IMAGE_EXTENSIONS = (".png", ".gif", ".ppm", ".jpg", ".jpeg",)
|
||||
pass
|
||||
|
||||
if Image:
|
||||
IMAGE_EXTENSIONS = (".png", ".gif", ".jpg", ".ppm", ".bmp")
|
||||
IMAGE_EXTENSIONS = (".png", ".gif", ".jpg", ".jpeg", ".ppm", ".bmp")
|
||||
|
||||
if TOOLKIT == 'kivy':
|
||||
IMAGE_EXTENSIONS = (".png", ".bmp", ".ppm", ".jpg", ".tiff")
|
||||
IMAGE_EXTENSIONS = (".png", ".bmp", ".ppm", ".jpg", ".jpeg", ".tif",
|
||||
".tiff")
|
||||
|
||||
# ************************************************************************
|
||||
# * DataLoader
|
||||
|
|
Loading…
Add table
Reference in a new issue