Added more media types to FileDialog

This commit is contained in:
Digital Artifex
2025-08-04 03:32:53 -04:00
parent 93579ee302
commit e18bb5c7ab

View File

@@ -113,7 +113,7 @@ Item
name: "Image" name: "Image"
icon: "./icons/image.svg" icon: "./icons/image.svg"
title: "Select an Image File" title: "Select an Image File"
filter: "Image Files (*.jpg, *.jpeg, *.png, *.svg)" filter: "Image Files (*.jpg *.jpeg *.png *.svg *.gif *.tiff *.webp)"
type: ShaderChannel.Type.ImageChannel type: ShaderChannel.Type.ImageChannel
} }
@@ -133,7 +133,7 @@ Item
name: "Video" name: "Video"
icon: "./icons/video.svg" icon: "./icons/video.svg"
title: "Select a Video File" title: "Select a Video File"
filter: "Video Files (*.mov, *.avi, *.mkv, *.mp4)" filter: "Video Files (*.mov *.avi *.mkv *.mp4)"
type: ShaderChannel.Type.VideoChannel type: ShaderChannel.Type.VideoChannel
} }