Revision: 3069
          http://skim-app.svn.sourceforge.net/skim-app/?rev=3069&view=rev
Author:   hofman
Date:     2007-10-24 05:25:43 -0700 (Wed, 24 Oct 2007)

Log Message:
-----------
Reload data after row heights have changed, because 
noteHeightOfRowsWithIndexesChanged: does not update the rows that are not 
visible, but those can be scrolled into the visible range.

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

Modified: trunk/SKMainWindowController.m
===================================================================
--- trunk/SKMainWindowController.m      2007-10-24 10:07:23 UTC (rev 3068)
+++ trunk/SKMainWindowController.m      2007-10-24 12:25:43 UTC (rev 3069)
@@ -3616,7 +3616,8 @@
         if (row != -1)
             [rowIndexes addIndex:row];
     }
-    [noteOutlineView noteHeightOfRowsWithIndexesChanged:rowIndexes];
+    // don't use noteHeightOfRowsWithIndexesChanged: as this only updates the 
visible rows and the scrollers
+    [noteOutlineView reloadData];
 }
 
 - (NSMenu *)outlineView:(NSOutlineView *)ov menuForTableColumn:(NSTableColumn 
*)tableColumn item:(id)item {


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

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Skim-app-commit mailing list
Skim-app-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to