mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Add delegate call to collectionView:didSelectItemsAtIndexPaths:
This commit is contained in:
parent
a453d12e7c
commit
73759407bb
1 changed files with 5 additions and 0 deletions
|
@ -583,6 +583,11 @@ static NSString *_placeholderItem = nil;
|
|||
}
|
||||
}
|
||||
END_FOR_IN(indexPaths);
|
||||
|
||||
if ([_delegate respondsToSelector: @selector(collectionView:didSelectItemsAtIndexPaths:)])
|
||||
{
|
||||
[_delegate collectionView: self didSelectItemsAtIndexPaths: indexPaths];
|
||||
}
|
||||
}
|
||||
|
||||
- (NSIndexSet *) selectionIndexes
|
||||
|
|
Loading…
Reference in a new issue