Title: [176093] trunk/Source/WebKit/mac
Revision
176093
Author
[email protected]
Date
2014-11-13 14:51:25 -0800 (Thu, 13 Nov 2014)

Log Message

WK1: Update icon for Add to Reading List
https://bugs.webkit.org/show_bug.cgi?id=138710
<rdar://problem/18975774>

Reviewed by Beth Dakin.

* WebView/WebActionMenuController.mm:
(-[WebActionMenuController _createActionMenuItemForTag:withHitTestResult:]):
Use the right icon, matching WebKit2.

Modified Paths

Diff

Modified: trunk/Source/WebKit/mac/ChangeLog (176092 => 176093)


--- trunk/Source/WebKit/mac/ChangeLog	2014-11-13 22:14:10 UTC (rev 176092)
+++ trunk/Source/WebKit/mac/ChangeLog	2014-11-13 22:51:25 UTC (rev 176093)
@@ -1,3 +1,15 @@
+2014-11-13  Tim Horton  <[email protected]>
+
+        WK1: Update icon for Add to Reading List
+        https://bugs.webkit.org/show_bug.cgi?id=138710
+        <rdar://problem/18975774>
+
+        Reviewed by Beth Dakin.
+
+        * WebView/WebActionMenuController.mm:
+        (-[WebActionMenuController _createActionMenuItemForTag:withHitTestResult:]):
+        Use the right icon, matching WebKit2.
+
 2014-11-12  Beth Dakin  <[email protected]>
 
         WK1: Support default actions for images

Modified: trunk/Source/WebKit/mac/WebView/WebActionMenuController.mm (176092 => 176093)


--- trunk/Source/WebKit/mac/WebView/WebActionMenuController.mm	2014-11-13 22:14:10 UTC (rev 176092)
+++ trunk/Source/WebKit/mac/WebView/WebActionMenuController.mm	2014-11-13 22:51:25 UTC (rev 176093)
@@ -614,7 +614,7 @@
     case WebActionMenuItemTagAddLinkToSafariReadingList:
         selector = @selector(_addToReadingListFromActionMenu:);
         title = WEB_UI_STRING_KEY("Add to Reading List", "Add to Reading List (action menu item)", "action menu item");
-        image = [NSImage imageNamed:NSImageNameBookmarksTemplate];
+        image = [NSImage imageNamed:@"NSActionMenuAddToReadingList"];
         representedObject = [hitTestResult objectForKey:WebElementLinkURLKey];
         break;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to