Title: [109211] trunk/Source/WebCore
Revision
109211
Author
[email protected]
Date
2012-02-29 07:26:10 -0800 (Wed, 29 Feb 2012)

Log Message

Web Inspector: Ctrl R should reload page from the console panel as well.
https://bugs.webkit.org/show_bug.cgi?id=79883

Reviewed by Vsevolod Vlasov.

* inspector/front-end/inspector.js:
(WebInspector.documentKeyDown):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (109210 => 109211)


--- trunk/Source/WebCore/ChangeLog	2012-02-29 15:24:18 UTC (rev 109210)
+++ trunk/Source/WebCore/ChangeLog	2012-02-29 15:26:10 UTC (rev 109211)
@@ -1,3 +1,13 @@
+2012-02-29  Pavel Feldman  <[email protected]>
+
+        Web Inspector: Ctrl R should reload page from the console panel as well.
+        https://bugs.webkit.org/show_bug.cgi?id=79883
+
+        Reviewed by Vsevolod Vlasov.
+
+        * inspector/front-end/inspector.js:
+        (WebInspector.documentKeyDown):
+
 2012-02-28  Pavel Podivilov  <[email protected]>
 
         Extended attributes list should go before 'static' and 'const' modifiers in IDLs.

Modified: trunk/Source/WebCore/inspector/front-end/inspector.js (109210 => 109211)


--- trunk/Source/WebCore/inspector/front-end/inspector.js	2012-02-29 15:24:18 UTC (rev 109210)
+++ trunk/Source/WebCore/inspector/front-end/inspector.js	2012-02-29 15:26:10 UTC (rev 109211)
@@ -709,15 +709,13 @@
             }
             break;
         case "U+0052": // R key
-            if (WebInspector.isInEditMode(event))
-                return;
             if ((event.metaKey && isMac) || (event.ctrlKey && !isMac)) {
                 PageAgent.reload(event.shiftKey);
                 event.preventDefault();
             }
             break;
         case "F5":
-            if (!isMac && !WebInspector.isInEditMode(event)) {
+            if (!isMac) {
                 PageAgent.reload(event.ctrlKey || event.shiftKey);
                 event.preventDefault();
             }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to