#301, add -fix_taskbar=0 command option

This commit is contained in:
Kang Yu 2024-03-18 14:42:52 -07:00
parent 2677195952
commit 84a8ac5792
4 changed files with 12 additions and 7 deletions

View file

@ -184,6 +184,9 @@ namespace PersistentWindows.SystrayShell
case "-fix_unminimized_window=0":
fix_unminimized_window = false;
break;
case "-fix_taskbar=0":
pwp.fixTaskBar = false;
break;
case "-foreground_background_dual_position=0":
pwp.enableDualPosSwitch = false;
break;
@ -729,9 +732,5 @@ namespace PersistentWindows.SystrayShell
Log.Error(format, args);
}
public static IntPtr GetForegroundWindow()
{
return PersistentWindowProcessor.GetForegroundWindow();
}
}
}