Revision: 23929
          http://sourceforge.net/p/bibdesk/svn/23929
Author:   hofman
Date:     2019-07-03 15:17:37 +0000 (Wed, 03 Jul 2019)
Log Message:
-----------
update progress indicator in file view from editor

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

Modified: trunk/bibdesk/BDSKEditor.m
===================================================================
--- trunk/bibdesk/BDSKEditor.m  2019-07-03 15:12:06 UTC (rev 23928)
+++ trunk/bibdesk/BDSKEditor.m  2019-07-03 15:17:37 UTC (rev 23929)
@@ -1819,7 +1819,7 @@
 
 - (void)item:(BibItem *)item updateProgress:(CGFloat)progress forURL:(NSURL 
*)url atIndex:(NSUInteger)index {
     if (index != NSNotFound) {
-        // update progress indicator in file view
+        [fileView updateProgressIndicator:progress forURL:url atIndex:index];
     } else {
         if (progress < 0.0) {
             [[statusBar progressIndicator] setIndeterminate:YES];
@@ -1832,7 +1832,7 @@
 
 - (void)item:(BibItem *)item addProgressForURL:(NSURL *)url 
atIndex:(NSUInteger)index {
     if (index != NSNotFound) {
-        // add progress in indicator file view
+        [fileView addProgressIndicatorForURL:url atIndex:index];
     } else {
         [statusBar 
setProgressIndicatorStyle:BDSKProgressIndicatorSpinningStyle];
         [statusBar startAnimation:nil];
@@ -1841,7 +1841,7 @@
 
 - (void)item:(BibItem *)item removeProgressForURL:(NSURL *)url 
atIndex:(NSUInteger)index {
     if (index != NSNotFound) {
-        // remove progress indicator from file view
+        [fileView removeProgressIndicatorForURL:url atIndex:index];
     } else {
         [statusBar stopAnimation:nil];
         [statusBar setProgressIndicatorStyle:BDSKProgressIndicatorNone];

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