mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Minor fix for open folder
(on dot net 6)
This commit is contained in:
parent
6bf7e7e3c8
commit
06dfc566db
@ -1271,7 +1271,12 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
{
|
||||
if (Configuration.IsRunningOnWindows || Configuration.IsRunningOnMac)
|
||||
{
|
||||
Process.Start(item);
|
||||
var startInfo = new ProcessStartInfo(item)
|
||||
{
|
||||
UseShellExecute = true
|
||||
};
|
||||
|
||||
Process.Start(startInfo);
|
||||
}
|
||||
else if (Configuration.IsRunningOnLinux)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user