Revision: 27482
          http://sourceforge.net/p/bibdesk/svn/27482
Author:   hofman
Date:     2022-05-26 13:36:15 +0000 (Thu, 26 May 2022)
Log Message:
-----------
only reload value column in editorwhen fields don't change

Modified Paths:
--------------
    trunk/bibdesk/BDSKEditor.m

Modified: trunk/bibdesk/BDSKEditor.m
===================================================================
--- trunk/bibdesk/BDSKEditor.m  2022-05-26 09:35:52 UTC (rev 27481)
+++ trunk/bibdesk/BDSKEditor.m  2022-05-26 13:36:15 UTC (rev 27482)
@@ -3381,10 +3381,15 @@
             [tableView sizeToFit];
             [citeKeyConstraint setConstant:width - 4.0];
         }
+        
+        [tableView reloadData];
+        
+    } else {
+        
+        [tableView reloadDataForRowIndexes:[NSIndexSet 
indexSetWithIndexesInRange:NSMakeRange(0, [fields count])] 
columnIndexes:[NSIndexSet indexSetWithIndex:1]];
+        
     }
     
-    [tableView reloadData];
-    
        // restore the edited cell and its selection
        if (editedTitle) {
         NSUInteger editingRow = [fields indexOfObject:editedTitle];

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