Revision: 14278
http://sourceforge.net/p/skim-app/code/14278
Author: hofman
Date: 2024-05-30 14:57:49 +0000 (Thu, 30 May 2024)
Log Message:
-----------
no need for variable that may not even be used
Modified Paths:
--------------
trunk/SKMainWindowController.m
Modified: trunk/SKMainWindowController.m
===================================================================
--- trunk/SKMainWindowController.m 2024-05-30 09:40:38 UTC (rev 14277)
+++ trunk/SKMainWindowController.m 2024-05-30 14:57:49 UTC (rev 14278)
@@ -2823,13 +2823,12 @@
[image setAccessibilityDescription:[NSString
stringWithFormat:NSLocalizedString(@"Page %@", @""), [page displayLabel]]];
dispatch_async(dispatch_get_main_queue(), ^{
- NSUInteger pageIndex = [thumbnail pageIndex];
BOOL sameSize = NSEqualSizes([image size], [thumbnail size]);
[thumbnail setImage:image];
if (sameSize == NO) {
- [leftSideController.thumbnailTableView
noteHeightOfRowChanged:pageIndex animating:YES];
+ [leftSideController.thumbnailTableView
noteHeightOfRowChanged:[thumbnail pageIndex] animating:YES];
[self updateOverviewItemSize];
}
});
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