Revision: 13920
          http://sourceforge.net/p/skim-app/code/13920
Author:   hofman
Date:     2023-12-18 18:34:09 +0000 (Mon, 18 Dec 2023)
Log Message:
-----------
don't use intermediate variable

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

Modified: trunk/SKThumbnailView.m
===================================================================
--- trunk/SKThumbnailView.m     2023-12-18 18:32:43 UTC (rev 13919)
+++ trunk/SKThumbnailView.m     2023-12-18 18:34:09 UTC (rev 13920)
@@ -137,8 +137,7 @@
 }
 
 - (NSVisualEffectView *)newHighlightView {
-    SKOverviewView *overviewView = [self collectionView];
-    NSVisualEffectView *highlightView = [overviewView 
newViewWithIdentifier:HIGHLIGHT_ID];
+    NSVisualEffectView *highlightView = [[self collectionView] 
newViewWithIdentifier:HIGHLIGHT_ID];
     if (highlightView == nil) {
         highlightView = [[NSVisualEffectView alloc] init];
         [highlightView setIdentifier:HIGHLIGHT_ID];

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