From 9bc466dea1a007223ce983d18f250d5bb3c69841 Mon Sep 17 00:00:00 2001 From: dessant Date: Sat, 30 Jan 2016 23:38:19 +0200 Subject: [PATCH] add jpe to supported sdl2 image extensions, fix by qua-non --- kivy/core/image/img_sdl2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kivy/core/image/img_sdl2.py b/kivy/core/image/img_sdl2.py index 99aaa73a18..2b4c41b511 100644 --- a/kivy/core/image/img_sdl2.py +++ b/kivy/core/image/img_sdl2.py @@ -20,8 +20,8 @@ def _ensure_ext(self): @staticmethod def extensions(): '''Return accepted extensions for this loader''' - return ('bmp', 'jpg', 'jpeg', 'lbm', 'pcx', 'png', 'pnm', 'tga', 'tiff', - 'webp', 'xcf', 'xpm', 'xv') + return ('bmp', 'jpg', 'jpeg', 'jpe', 'lbm', 'pcx', 'png', 'pnm', + 'tga', 'tiff', 'webp', 'xcf', 'xpm', 'xv') @staticmethod def can_save():