Revision: 16212
          http://sourceforge.net/p/skim-app/code/16212
Author:   hofman
Date:     2026-05-03 21:28:38 +0000 (Sun, 03 May 2026)
Log Message:
-----------
don't message delegate separately as it is a notification observer when it 
responds. Fix key in userInfo.

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

Modified: trunk/SKNoteOutlineView.m
===================================================================
--- trunk/SKNoteOutlineView.m   2026-05-03 21:17:07 UTC (rev 16211)
+++ trunk/SKNoteOutlineView.m   2026-05-03 21:28:38 UTC (rev 16212)
@@ -153,9 +153,7 @@
     [tc setHidden:[tc isHidden] == NO];
     if ([self outlineTableColumn] == tc && [tc isHidden])
         [self collapseItem:nil collapseChildren:YES];
-    NSNotification *notification = [NSNotification 
notificationWithName:NSOutlineViewColumnDidResizeNotification object:self 
userInfo:@{@"TableColumn":tc}];
-    if ([[self delegate] 
respondsToSelector:@selector(outlineViewColumnDidResize:)])
-        [[self delegate] outlineViewColumnDidResize:notification];
+    NSNotification *notification = [NSNotification 
notificationWithName:NSOutlineViewColumnDidResizeNotification object:self 
userInfo:@{@"NSTableColumn":tc}];
     [[NSNotificationCenter defaultCenter] postNotification:notification];
 }
 

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