Revision: 28665
          http://sourceforge.net/p/bibdesk/svn/28665
Author:   hofman
Date:     2024-01-24 10:36:09 +0000 (Wed, 24 Jan 2024)
Log Message:
-----------
set the tag of the cell rather than the button, apparently they are not the same

Modified Paths:
--------------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m

Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m      2024-01-24 
10:30:49 UTC (rev 28664)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m      2024-01-24 
10:36:09 UTC (rev 28665)
@@ -382,12 +382,12 @@
     [_subtitleCell setAlignment:NSTextAlignmentCenter];
     
     _leftArrow = [[FVArrowButton alloc] init];
-    [_leftArrow setTag:FVArrowLeft];
+    [[_leftArrow cell] setTag:FVArrowLeft];
     [_leftArrow setTarget:self];
     [_leftArrow setAction:@selector(leftArrowAction:)];
     
     _rightArrow = [[FVArrowButton alloc] init];
-    [_rightArrow setTag:FVArrowRight];
+    [[_rightArrow cell] setTag:FVArrowRight];
     [_rightArrow setTarget:self];
     [_rightArrow setAction:@selector(rightArrowAction:)];
     

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



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to