https://bugs.webkit.org/show_bug.cgi?id=138135
Reviewed by Anders Carlsson.
* UIProcess/mac/WKActionMenuController.mm:
(-[WKActionMenuController _defaultMenuItemsForLink]):
The comment is wrong; the separator is there for spacing, not just as a workaround.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@175256
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-10-28 Tim Horton <timothy_horton@apple.com>
+
+ Remove an inaccurate comment in WKActionMenuController
+ https://bugs.webkit.org/show_bug.cgi?id=138135
+
+ Reviewed by Anders Carlsson.
+
+ * UIProcess/mac/WKActionMenuController.mm:
+ (-[WKActionMenuController _defaultMenuItemsForLink]):
+ The comment is wrong; the separator is there for spacing, not just as a workaround.
+
2014-10-28 Carlos Garcia Campos <cgarcia@igalia.com>
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.7.1 release.
RetainPtr<NSMenuItem> previewLinkItem = [self _createActionMenuItemForTag:kWKContextActionItemTagPreviewLink];
RetainPtr<NSMenuItem> readingListItem = [self _createActionMenuItemForTag:kWKContextActionItemTagAddLinkToSafariReadingList];
- // FIXME: The separator item is required to work around <rdar://18684207>.
return @[ openLinkItem.get(), previewLinkItem.get(), [NSMenuItem separatorItem], readingListItem.get() ];
}