mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 23:03:51 +02:00
Fix loading custom.css from custom path
This commit is contained in:
@@ -75,8 +75,7 @@ namespace VRCX
|
||||
public string CustomVrScriptPath()
|
||||
{
|
||||
var output = string.Empty;
|
||||
var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "VRCX",
|
||||
"customvr.js");
|
||||
var filePath = Path.Combine(Program.AppDataDirectory, "customvr.js");
|
||||
if (File.Exists(filePath))
|
||||
output = filePath;
|
||||
return output;
|
||||
|
||||
Reference in New Issue
Block a user