You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The root item of an OutlineView is expected to be nil.
GNUmail (check MailboxManagerController.m reloadAllFolders) calls directly with the root item (in that case an array). Apple apparently deduplicates and works, while GNUstep will descend and expand first nil to the array and then put the array as first level item. Apple somehow "notices" they are the same. [NSOutlineView expandItem]
The text was updated successfully, but these errors were encountered:
Here it calls the outlineView data source method with a different method than we do. We use expandItem: nil, they use _nonStaticDataSourceChild:ofItem:. While our implementation is functionally correct, and conforms to the documentation, this results in slightly different behavior. Also, I believe as mentioned above, Apple is deduplicating items per child, so they are only displayed once. Also see below... the data source is called with item = nil...
The root item of an OutlineView is expected to be nil.
GNUmail (check MailboxManagerController.m reloadAllFolders) calls directly with the root item (in that case an array). Apple apparently deduplicates and works, while GNUstep will descend and expand first nil to the array and then put the array as first level item. Apple somehow "notices" they are the same. [NSOutlineView expandItem]
The text was updated successfully, but these errors were encountered: