Title: [194572] trunk/Source/WebInspectorUI
Revision
194572
Author
[email protected]
Date
2016-01-04 21:10:29 -0800 (Mon, 04 Jan 2016)

Log Message

Web Inspector: Fix debug context menu string and reload without cache tooltip string
https://bugs.webkit.org/show_bug.cgi?id=152725

Patch by Joseph Pecoraro <[email protected]> on 2016-01-04
Reviewed by Brian Burg.

* UserInterface/Base/Main.js:
(WebInspector.contentLoaded):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (194571 => 194572)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-01-05 02:33:34 UTC (rev 194571)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-01-05 05:10:29 UTC (rev 194572)
@@ -1,3 +1,13 @@
+2016-01-04  Joseph Pecoraro  <[email protected]>
+
+        Web Inspector: Fix debug context menu string and reload without cache tooltip string
+        https://bugs.webkit.org/show_bug.cgi?id=152725
+
+        Reviewed by Brian Burg.
+
+        * UserInterface/Base/Main.js:
+        (WebInspector.contentLoaded):
+
 2016-01-04  Devin Rousso  <[email protected]>
 
         Web Inspector: add context menu items to switch CSS color property value syntax between RGB, HSL, etc

Modified: trunk/Source/WebInspectorUI/UserInterface/Base/Main.js (194571 => 194572)


--- trunk/Source/WebInspectorUI/UserInterface/Base/Main.js	2016-01-05 02:33:34 UTC (rev 194571)
+++ trunk/Source/WebInspectorUI/UserInterface/Base/Main.js	2016-01-05 05:10:29 UTC (rev 194572)
@@ -269,7 +269,7 @@
 
     this._reloadPageKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "R", this._reloadPage.bind(this));
     this._reloadPageIgnoringCacheKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl | WebInspector.KeyboardShortcut.Modifier.Shift, "R", this._reloadPageIgnoringCache.bind(this));
-    this._reloadPageKeyboardShortcut.implicitlyPreventsDefault = this._reloadPageIgnoringCacheKeyboardShortcut = false;
+    this._reloadPageKeyboardShortcut.implicitlyPreventsDefault = this._reloadPageIgnoringCacheKeyboardShortcut.implicitlyPreventsDefault = false;
 
     this._consoleTabKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Option | WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "C", this._showConsoleTab.bind(this));
     this._quickConsoleKeyboardShortcut = new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.Control, WebInspector.KeyboardShortcut.Key.Apostrophe, this._focusConsolePrompt.bind(this));
@@ -1391,7 +1391,7 @@
 
         protocolSubMenu.appendSeparator();
 
-        protocolSubMenu.appendItem(WebInspector.unlocalizedString("Export Trace\u2014"), () => {
+        protocolSubMenu.appendItem(WebInspector.unlocalizedString("Export Trace\u2026"), () => {
             const forceSaveAs = true;
             WebInspector.saveDataToFile(InspectorBackend.activeTracer.trace.saveData, forceSaveAs);
         }, !isCapturingTraffic);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to