From 7f682a54613a888b3d9f11698e59c8c6505eadaa Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Mon, 4 Sep 2017 15:50:19 +0100 Subject: [PATCH] correct top-left offset --- chaos/gui.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chaos/gui.rkt b/chaos/gui.rkt index 276f443..0227051 100644 --- a/chaos/gui.rkt +++ b/chaos/gui.rkt @@ -41,7 +41,7 @@ [start-fullscreen? (define-values (x y) (get-display-left-top-inset #t)) (define-values (w h) (get-display-size #t)) - (values (* -1 x) (* -1 y) w h)] + (values x y w h)] [else (values the-start-x the-start-y the-init-w the-init-h)]))