mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.git
synced 2025-11-19 21:02:53 +08:00
process cmdline #1061
This commit is contained in:
@@ -34,9 +34,9 @@ internal static class ProcessInterop
|
||||
.AppendIf("-popupwindow", options.IsBorderless)
|
||||
.AppendIf("-window-mode", options.IsExclusive, "exclusive")
|
||||
.Append("-screen-fullscreen", options.IsFullScreen ? 1 : 0)
|
||||
.Append("-screen-width", options.ScreenWidth)
|
||||
.Append("-screen-height", options.ScreenHeight)
|
||||
.Append("-monitor", options.Monitor.Value)
|
||||
.AppendIf("-screen-width", options.IsScreenWidthEnabled, options.ScreenWidth)
|
||||
.AppendIf("-screen-height", options.IsScreenHeightEnabled, options.ScreenHeight)
|
||||
.AppendIf("-monitor", options.IsMonitorEnabled, options.Monitor.Value)
|
||||
.ToString();
|
||||
|
||||
return new()
|
||||
|
||||
Reference in New Issue
Block a user