Revision: 21955
          http://sourceforge.net/p/bibdesk/svn/21955
Author:   hofman
Date:     2018-02-18 16:01:36 +0000 (Sun, 18 Feb 2018)
Log Message:
-----------
fix loop condition

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

Modified: trunk/bibdesk/BDSKWebGroup.m
===================================================================
--- trunk/bibdesk/BDSKWebGroup.m        2018-02-18 15:58:44 UTC (rev 21954)
+++ trunk/bibdesk/BDSKWebGroup.m        2018-02-18 16:01:36 UTC (rev 21955)
@@ -353,7 +353,7 @@
     WebFrame *mainFrame = [[frame webView] mainFrame];
     NSMutableArray *parents = [NSMutableArray array];
     WebFrame *parentFrame = frame;
-    while ((parentFrame = [frame parentFrame]) != mainFrame)
+    while ((parentFrame = [parentFrame parentFrame]) != mainFrame)
         [parents addObject:parentFrame];
     if ([parents count] > 0)
         [info setObject:parents forKey:PARENTS_KEY];

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


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Bibdesk-commit mailing list
Bibdesk-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to