diff --git a/nodes/nodes_graphics_template.py b/nodes/nodes_graphics_template.py index 676d535..d43b9e8 100644 --- a/nodes/nodes_graphics_template.py +++ b/nodes/nodes_graphics_template.py @@ -31,7 +31,8 @@ class CR_SimpleMemeTemplate: def INPUT_TYPES(s): font_dir = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "fonts") - file_list = [f for f in os.listdir(font_dir) if os.path.isfile(os.path.join(font_dir, f)) and f.lower().endswith(".ttf")] + # file_list = [f for f in os.listdir(font_dir) if os.path.isfile(os.path.join(font_dir, f)) and f.lower().endswith(".ttf")] + file_list = [f for f in os.listdir(font_dir) if os.path.isfile(os.path.join(font_dir, f)) and (f.lower().endswith(".ttf") or f.lower().endswith(".otf"))] bar_opts = ["no bars", "top", "bottom", "top and bottom"] simple_meme_presets = ["custom", "One Does Not Simply ... MEME IN COMFY",