Revision: 14776
          http://sourceforge.net/p/skim-app/code/14776
Author:   hofman
Date:     2024-12-01 15:41:04 +0000 (Sun, 01 Dec 2024)
Log Message:
-----------
fix rounding of numbeer

Modified Paths:
--------------
    trunk/NSGraphics_SKExtensions.m

Modified: trunk/NSGraphics_SKExtensions.m
===================================================================
--- trunk/NSGraphics_SKExtensions.m     2024-12-01 09:53:29 UTC (rev 14775)
+++ trunk/NSGraphics_SKExtensions.m     2024-12-01 15:41:04 UTC (rev 14776)
@@ -190,7 +190,7 @@
     }
     if (SKHasDarkAppearance() && [sud boolForKey:SKInvertColorsInDarkModeKey]) 
{
         // map the white page background to 45/255, or 30/255 with high 
contrast
-        CGFloat f = [[NSWorkspace sharedWorkspace] 
accessibilityDisplayShouldIncreaseContrast] ? 1.9337 : 1.8972;
+        CGFloat f = [[NSWorkspace sharedWorkspace] 
accessibilityDisplayShouldIncreaseContrast] ? 1.9338 : 1.8972;
         // This is like CIColorInvert + CIHueAdjust, modified to map white to 
dark gray rather than black
         // Inverts a linear luminocity with weights from the CIE standards
         // see 
https://wiki.preterhuman.net/Matrix_Operations_for_Image_Processingand 
https://beesbuzz.biz/code/16-hsv-color-transforms

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Skim-app-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to