diff --git a/src/ThumbNails.py b/src/ThumbNails.py index 833e3c8f2..9687d73f8 100644 --- a/src/ThumbNails.py +++ b/src/ThumbNails.py @@ -342,5 +342,5 @@ def get_thumbnail_path(src_file, mtype=None, rectangle=None, size=SIZE_NORMAL): if (not os.path.isfile(filename)) or ( os.path.getmtime(src_file) > os.path.getmtime(filename)): if not __create_thumbnail_image(src_file, mtype, rectangle, size): - return os.path.join(const.IMAGE_DIR, "image-missing.png") + return os.path.join(const.IMAGE_DIR, "document.png") return os.path.abspath(filename)