Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sculpt_Alphas_Manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def preview_items_in_folders(self, context):
if directory and os.path.exists(directory):
image_paths = []
for fn in os.listdir(directory):
if fn.lower().endswith(".jpeg") or fn.lower().endswith(".jpg") or fn.lower().endswith(".png") or fn.lower().endswith(".tif"):
if fn.lower().endswith(".jpeg") or fn.lower().endswith(".jpg") or fn.lower().endswith(".png") or fn.lower().endswith(".tif") or fn.lower().endswith(".psd"):
image_paths.append(fn)

for i, name in enumerate(image_paths):
Expand Down Expand Up @@ -228,4 +228,4 @@ def unregister():
preview_collections.clear()

if __name__ == "__main__":
register()
register()