From 464bfcb6dfcec03c2a35e8ee7ad09b9065b7cda8 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Wed, 14 Aug 2024 08:37:28 +0200 Subject: [PATCH] ModelImporter - Add summary to 'SupportedModelFileFormatsFilter' property --- PCK-Studio/Internal/ModelImporter.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PCK-Studio/Internal/ModelImporter.cs b/PCK-Studio/Internal/ModelImporter.cs index 7447e014..e24d21c7 100644 --- a/PCK-Studio/Internal/ModelImporter.cs +++ b/PCK-Studio/Internal/ModelImporter.cs @@ -73,6 +73,9 @@ namespace PckStudio.Internal } } + /// + /// Filter that can be used for or + /// public string SupportedModelFileFormatsFilter => string.Join("|", _importProviders.Values.Select(p => p.DialogFilter)); public T Import(string filename)