Title: [210966] trunk/Tools
Revision
210966
Author
[email protected]
Date
2017-01-20 09:59:22 -0800 (Fri, 20 Jan 2017)

Log Message

Mini Browser: Show tooltip for Experimental Features
https://bugs.webkit.org/show_bug.cgi?id=167225

Patch by Joseph Pecoraro <[email protected]> on 2017-01-20
Reviewed by Alex Christensen.

* MiniBrowser/mac/SettingsController.m:
(-[SettingsController _populateMenu]):
Include the full details string as a tooltip.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (210965 => 210966)


--- trunk/Tools/ChangeLog	2017-01-20 17:50:22 UTC (rev 210965)
+++ trunk/Tools/ChangeLog	2017-01-20 17:59:22 UTC (rev 210966)
@@ -1,3 +1,14 @@
+2017-01-20  Joseph Pecoraro  <[email protected]>
+
+        Mini Browser: Show tooltip for Experimental Features
+        https://bugs.webkit.org/show_bug.cgi?id=167225
+
+        Reviewed by Alex Christensen.
+
+        * MiniBrowser/mac/SettingsController.m:
+        (-[SettingsController _populateMenu]):
+        Include the full details string as a tooltip.
+
 2017-01-20  Per Arne Vollan  <[email protected]>
 
         [Win] Test output results should not be written twice.

Modified: trunk/Tools/MiniBrowser/mac/SettingsController.m (210965 => 210966)


--- trunk/Tools/MiniBrowser/mac/SettingsController.m	2017-01-20 17:50:22 UTC (rev 210965)
+++ trunk/Tools/MiniBrowser/mac/SettingsController.m	2017-01-20 17:59:22 UTC (rev 210966)
@@ -175,6 +175,7 @@
 
     for (_WKExperimentalFeature *feature in features) {
         NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:feature.name action:@selector(toggleExperimentalFeature:) keyEquivalent:@""];
+        item.toolTip = feature.details;
         item.representedObject = feature;
 
         [item setTag:ExperimentalFeatureTag];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to