]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "Get NS screen resolution from system"
authorAlan Third <alan@idiocy.org>
Sun, 31 Dec 2023 10:28:29 +0000 (10:28 +0000)
committerAlan Third <alan@idiocy.org>
Sun, 31 Dec 2023 10:29:13 +0000 (10:29 +0000)
This reverts commit f3dec3439fd5aee885a76622f384f6c7ca67d128.

src/nsterm.m

index dbb54632add628cd666470df558a9676f6a8a498..d4b8318faefcd76968aa8e859a0716f22f1b1267 100644 (file)
@@ -5265,11 +5265,8 @@ ns_initialize_display_info (struct ns_display_info *dpyinfo)
     NSScreen *screen = [NSScreen mainScreen];
     NSWindowDepth depth = [screen depth];
 
-    NSDictionary *dict = [screen deviceDescription];
-    NSSize res = [[dict objectForKey:@"NSDeviceResolution"] sizeValue];
-    dpyinfo->resx = res.width;
-    dpyinfo->resy = res.height;
-
+    dpyinfo->resx = 72.27; /* used 75.0, but this makes pt == pixel, expected */
+    dpyinfo->resy = 72.27;
     dpyinfo->color_p = ![NSDeviceWhiteColorSpace isEqualToString:
                                                   NSColorSpaceFromDepth (depth)]
                 && ![NSCalibratedWhiteColorSpace isEqualToString: