[MM-58357] Account for monitor scale factor when creating the window from saved bounds (#3045)

This commit is contained in:
Devin Binnie
2024-05-29 10:08:11 -04:00
committed by GitHub
parent 39a2d863f1
commit 9bc0270a13
3 changed files with 33 additions and 8 deletions

View File

@@ -179,7 +179,7 @@ export function validateArgs(data: Args) {
}
// validate bounds_info.json
export function validateBoundsInfo(data: SavedWindowState) {
export function validateBoundsInfo(data: SavedWindowState | null) {
return validateAgainstSchema(data, boundsInfoSchema);
}