mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 14:56:06 +02:00
Far less jank fix to previous pr (#1246)
* Check if Vrchat path is stale * Check if Vrchat path is stale * Fixed `Open Folder` opening file * Fixed Open Folder opening file * Fix `Open Folder` opening file
This commit is contained in:
@@ -230,7 +230,7 @@ namespace VRCX
|
|||||||
|
|
||||||
public override void OpenFolderAndSelectItem(string path, bool isFolder = false)
|
public override void OpenFolderAndSelectItem(string path, bool isFolder = false)
|
||||||
{
|
{
|
||||||
path = Path.GetFullPath(path);
|
path = Path.GetDirectoryName(path);
|
||||||
if (!File.Exists(path) && !Directory.Exists(path))
|
if (!File.Exists(path) && !Directory.Exists(path))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user