Title: [248618] branches/safari-608-branch/Source/WebKit
Revision
248618
Author
alanc...@apple.com
Date
2019-08-13 13:01:08 -0700 (Tue, 13 Aug 2019)

Log Message

Cherry-pick r248430. rdar://problem/54237652

    Use "safari" glyph for "Show Link Previews" contextual menu
    https://bugs.webkit.org/show_bug.cgi?id=200544
    <rdar://problem/54087842>

    Reviewed by Tim Horton.

    Use the system image for the compass.

    * UIProcess/API/Cocoa/_WKElementAction.mm:
    (+[_WKElementAction imageForElementActionType:]):

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@248430 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-608-branch/Source/WebKit/ChangeLog (248617 => 248618)


--- branches/safari-608-branch/Source/WebKit/ChangeLog	2019-08-13 20:01:05 UTC (rev 248617)
+++ branches/safari-608-branch/Source/WebKit/ChangeLog	2019-08-13 20:01:08 UTC (rev 248618)
@@ -1,5 +1,35 @@
 2019-08-13  Alan Coon  <alanc...@apple.com>
 
+        Cherry-pick r248430. rdar://problem/54237652
+
+    Use "safari" glyph for "Show Link Previews" contextual menu
+    https://bugs.webkit.org/show_bug.cgi?id=200544
+    <rdar://problem/54087842>
+    
+    Reviewed by Tim Horton.
+    
+    Use the system image for the compass.
+    
+    * UIProcess/API/Cocoa/_WKElementAction.mm:
+    (+[_WKElementAction imageForElementActionType:]):
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@248430 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2019-08-08  Dean Jackson  <d...@apple.com>
+
+            Use "safari" glyph for "Show Link Previews" contextual menu
+            https://bugs.webkit.org/show_bug.cgi?id=200544
+            <rdar://problem/54087842>
+
+            Reviewed by Tim Horton.
+
+            Use the system image for the compass.
+
+            * UIProcess/API/Cocoa/_WKElementAction.mm:
+            (+[_WKElementAction imageForElementActionType:]):
+
+2019-08-13  Alan Coon  <alanc...@apple.com>
+
         Cherry-pick r248338. rdar://problem/54237654
 
     [iPadOS] slides.google.com: tapping near cursor in a slide title focuses the speaker notes

Modified: branches/safari-608-branch/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm (248617 => 248618)


--- branches/safari-608-branch/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm	2019-08-13 20:01:05 UTC (rev 248617)
+++ branches/safari-608-branch/Source/WebKit/UIProcess/API/Cocoa/_WKElementAction.mm	2019-08-13 20:01:08 UTC (rev 248618)
@@ -240,7 +240,7 @@
     case _WKElementActionTypeDownload:
         return [UIImage systemImageNamed:@"arrow.down.circle"];
     case _WKElementActionToggleShowLinkPreviews:
-        return [UIImage systemImageNamed:@"eye.fill"];
+        return [UIImage systemImageNamed:@"safari"];
     }
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to