Files
OpsLog/screenbounds_other.go
T
2026-07-26 16:57:19 +02:00

8 lines
253 B
Go

//go:build !windows
package main
// virtualScreenBounds is Windows-only; elsewhere we cannot tell, and the caller
// treats "cannot tell" as "trust the saved position".
func virtualScreenBounds() (x, y, w, h int, ok bool) { return 0, 0, 0, 0, false }