Skip to content
Snippets Groups Projects
Commit b3d8978d authored by Claudio Cambra's avatar Claudio Cambra Committed by Felix Paul Kühne
Browse files

macosx: Implement row for library item in shows data source


Signed-off-by: default avatarClaudio Cambra <developer@claudiocambra.com>
parent 819190db
No related branches found
No related tags found
No related merge requests found
...@@ -127,4 +127,12 @@ ...@@ -127,4 +127,12 @@
return nil; return nil;
} }
- (NSInteger)rowForLibraryItem:(id<VLCMediaLibraryItemProtocol>)libraryItem
{
if (libraryItem == nil) {
return NSNotFound;
}
return [self indexOfMediaItem:libraryItem.libraryID inArray:self.showsArray];
}
@end @end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment