Title: [203017] trunk/Source/WebInspectorUI
Revision
203017
Author
nvasil...@apple.com
Date
2016-07-08 19:24:23 -0700 (Fri, 08 Jul 2016)

Log Message

Web Inspector: Command-Shift-S in the Styles sidebar should always show the save dialog
https://bugs.webkit.org/show_bug.cgi?id=156858
<rdar://problem/25859098>

Reviewed by Timothy Hatcher.

* UserInterface/Views/CSSStyleDeclarationSection.js:
(WebInspector.CSSStyleDeclarationSection):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (203016 => 203017)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-07-09 02:14:43 UTC (rev 203016)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-07-09 02:24:23 UTC (rev 203017)
@@ -1,3 +1,14 @@
+2016-07-08  Nikita Vasilyev  <nvasil...@apple.com>
+
+        Web Inspector: Command-Shift-S in the Styles sidebar should always show the save dialog
+        https://bugs.webkit.org/show_bug.cgi?id=156858
+        <rdar://problem/25859098>
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/CSSStyleDeclarationSection.js:
+        (WebInspector.CSSStyleDeclarationSection):
+
 2016-07-07  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector, regression: JS/JSON pretty-printing sporadically broken in STP8

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationSection.js (203016 => 203017)


--- trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationSection.js	2016-07-09 02:14:43 UTC (rev 203016)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/CSSStyleDeclarationSection.js	2016-07-09 02:24:23 UTC (rev 203017)
@@ -42,6 +42,7 @@
         this._element.classList.add("style-declaration-section");
 
         new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl, "S", this._save.bind(this), this._element);
+        new WebInspector.KeyboardShortcut(WebInspector.KeyboardShortcut.Modifier.CommandOrControl | WebInspector.KeyboardShortcut.Modifier.Shift, "S", this._save.bind(this), this._element);
 
         this._headerElement = document.createElement("div");
         this._headerElement.classList.add("header");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to