#369, #388, #392: turn off auto-restore new window off by default

This commit is contained in:
Kang Yu 2025-03-17 16:30:49 -07:00
parent 557a3bbddb
commit aacaefc205
2 changed files with 4 additions and 4 deletions

View file

@ -120,7 +120,7 @@ namespace PersistentWindows.Common
public bool fixUnminimizedWindow = true;
public bool autoRestoreMissingWindows = false;
public bool autoRestoreLiveWindowsFromDb = true; //for new display session, autorestore live windows using data from db (without resurrecting dead one)
public bool autoRestoreNewWindowToLastCapture = true;
public bool autoRestoreNewWindowToLastCapture = false;
public bool launchOncePerProcessId = true;
private int restoreTimes = 0; //multiple passes need to fully restore
private Object restoreLock = new object();