diff --git a/pixelgl/input.go b/pixelgl/input.go
index 236762897b349be8ef946b801a8b4721e8bba8c6..157b5c06723f8365999c214c4378b3959e727270 100644
--- a/pixelgl/input.go
+++ b/pixelgl/input.go
@@ -361,10 +361,14 @@ func (w *Window) updateInput() {
 		wi, hi := w.window.GetSize()
 		width, height := float64(wi), float64(hi)
 
-		w.currInp.mouse = pixel.V(
+		mouse := pixel.V(
 			x/width*w.bounds.W()+w.bounds.X(),
 			(height-y)/height*w.bounds.H()+w.bounds.Y(),
 		)
+
+		if w.bounds.Contains(mouse) {
+			w.currInp.mouse = mouse
+		}
 	})
 
 	// cache current state to temp (so that if there are callbacks outside this function,