Revision: 13125 http://sourceforge.net/p/skim-app/code/13125 Author: hofman Date: 2022-10-23 23:36:28 +0000 (Sun, 23 Oct 2022) Log Message: ----------- no need to access readingBar atomically for magnify window
Modified Paths: -------------- trunk/SKPDFView.m Modified: trunk/SKPDFView.m =================================================================== --- trunk/SKPDFView.m 2022-10-23 23:02:22 UTC (rev 13124) +++ trunk/SKPDFView.m 2022-10-23 23:36:28 UTC (rev 13125) @@ -4925,9 +4925,9 @@ [super drawPage:page toContext:context]; else [super drawPage:page]; - if ([self readingBar]) { + if (readingBar) { [page transformContext:context forBox:box]; - [[self readingBar] drawForPage:page withBox:box inContext:context]; + [readingBar drawForPage:page withBox:box inContext:context]; } [[NSGraphicsContext currentContext] setImageInterpolation:NSImageInterpolationDefault]; [NSGraphicsContext restoreGraphicsState]; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. _______________________________________________ Skim-app-commit mailing list Skim-app-commit@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/skim-app-commit