diff --git a/internal/ui/monitor_glfw.go b/internal/ui/monitor_glfw.go index b014bee6b..a6ef7b57b 100644 --- a/internal/ui/monitor_glfw.go +++ b/internal/ui/monitor_glfw.go @@ -17,7 +17,6 @@ package ui import ( - "image" "sync" "sync/atomic" @@ -38,11 +37,6 @@ type Monitor struct { name string } -// Bounds returns the monitor's bounds. -func (m *Monitor) Bounds() image.Rectangle { - return image.Rect(m.x, m.y, m.x+m.width, m.y+m.height) -} - // Name returns the monitor's name. func (m *Monitor) Name() string { return m.name