Rename IsOSX to IsMacOS in Utils and usages

This commit is contained in:
2dust
2025-11-09 10:52:46 +08:00
parent e20c11c1a7
commit 4da59cd767
10 changed files with 12 additions and 12 deletions

View File

@@ -511,7 +511,7 @@ public class MainWindowViewModel : MyReactiveObject
{
ProcUtils.ProcessStart("xdg-open", path);
}
else if (Utils.IsOSX())
else if (Utils.IsMacOS())
{
ProcUtils.ProcessStart("open", path);
}