diff --git a/Source/Editor/Content/Proxy/FileProxy.cs b/Source/Editor/Content/Proxy/FileProxy.cs index 4e12ab588..d162e5f35 100644 --- a/Source/Editor/Content/Proxy/FileProxy.cs +++ b/Source/Editor/Content/Proxy/FileProxy.cs @@ -32,6 +32,14 @@ namespace FlaxEditor.Content /// public override EditorWindow Open(Editor editor, ContentItem item) { +#if PLATFORM_WINDOWS + CreateProcessSettings settings = new CreateProcessSettings + { + ShellExecute = true, + FileName = item.Path + }; + Platform.CreateProcess(ref settings); +#endif return null; }