]> git.eshelyaron.com Git - emacs.git/commitdiff
Use frame-monitor-attributes in gamegrid
authorRobert Pluim <rpluim@gmail.com>
Fri, 2 Sep 2022 09:15:43 +0000 (11:15 +0200)
committerRobert Pluim <rpluim@gmail.com>
Fri, 2 Sep 2022 09:36:10 +0000 (11:36 +0200)
* lisp/play/gamegrid.el (gamegrid-calculate-glyph-size): Use
`frame-monitor-attributes' to get the frame attributes directly
instead of iterating over `display-monitor-attributes-list'.

lisp/play/gamegrid.el

index 8cff67c5bcc0f926fdbf38c00f43f87ba3dfab71..4e4982e7b0d04dd06dec0cbb1027cef853c6be9a 100644 (file)
@@ -80,12 +80,8 @@ directory will be used.")
 (defun gamegrid-calculate-glyph-size ()
   "Calculate appropriate glyph size in pixels based on display resolution.
 Return a multiple of 8 no less than 16."
-  (let (atts
+  (let ((atts (frame-monitor-attributes))
         y-pitch)
-    (dolist (mon (display-monitor-attributes-list))
-      (when-let ((frames (alist-get 'frames mon))
-                 (match (memq (selected-frame) frames)))
-        (setq atts mon)))
     (setq y-pitch (cond
                    (atts
                     (/ (nth 4 (assq 'geometry atts))