--debug, tray launch DevTools, fix right click paste

This commit is contained in:
Natsumi
2022-09-12 20:50:58 +12:00
parent 1e1918389b
commit 116f76a2a5
5 changed files with 38 additions and 19 deletions

View File

@@ -27,8 +27,11 @@ namespace VRCX
if (arg.Length > 12 && arg.Substring(0, 12) == "/uri=vrcx://")
LaunchCommand = arg.Substring(12);
if (arg.Length > 12 && arg.Substring(0, 8) == "--config")
if (arg.Length > 8 && arg.Substring(0, 8) == "--config")
Program.ConfigLocation = arg.Substring(9);
if (arg.Length >= 7 && arg.Substring(0, 7) == "--debug")
Program.LaunchDebug = true;
}
if (processList.Length > 1 && String.IsNullOrEmpty(LaunchCommand))