This commit is contained in:
stax76
2023-12-20 05:19:50 +01:00
parent ab8a8d5a35
commit 7f2bf2e905
7 changed files with 80 additions and 76 deletions

View File

@@ -435,7 +435,7 @@ public class MainPlayer : MpvClient
{
string name = pair.Name[..^4];
string separator = name.Contains("-file") || name.Contains("-path") ? ";" : ",";
SetPropertyString(name, (GetPropertyString(name) + separator + pair.Value).TrimStart(','));
SetPropertyString(name, (GetPropertyString(name) + separator + pair.Value).TrimStart(',', ';'));
}
}
}

View File

@@ -18,6 +18,7 @@ public class AppSettings
public Size WindowSize;
public string ConfigEditorSearch = "Video:";
public string Mute = "no";
public string StartupFolder = "";
}
class SettingsManager