Title: [121849] trunk/Source/WebCore
Revision
121849
Author
[email protected]
Date
2012-07-04 06:55:10 -0700 (Wed, 04 Jul 2012)

Log Message

Not reviewed: follow up to r121843, reduce inspector dock timeout to 200ms.

* inspector/front-end/StatusBarButton.js:
(WebInspector.StatusBarButton.prototype.makeLongClickEnabled.mouseDown):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121848 => 121849)


--- trunk/Source/WebCore/ChangeLog	2012-07-04 13:54:43 UTC (rev 121848)
+++ trunk/Source/WebCore/ChangeLog	2012-07-04 13:55:10 UTC (rev 121849)
@@ -1,3 +1,10 @@
+2012-07-04  'Pavel Feldman'  <[email protected]>
+
+        Not reviewed: follow up to r121843, reduce inspector dock timeout to 200ms.
+
+        * inspector/front-end/StatusBarButton.js:
+        (WebInspector.StatusBarButton.prototype.makeLongClickEnabled.mouseDown):
+
 2012-07-04  Ian Vollick  <[email protected]>
 
         [chromium] Correctly reject accelerated animations with certain rotations.

Modified: trunk/Source/WebCore/inspector/front-end/StatusBarButton.js (121848 => 121849)


--- trunk/Source/WebCore/inspector/front-end/StatusBarButton.js	2012-07-04 13:54:43 UTC (rev 121848)
+++ trunk/Source/WebCore/inspector/front-end/StatusBarButton.js	2012-07-04 13:55:10 UTC (rev 121849)
@@ -172,7 +172,7 @@
         {
             if (e.which !== 1)
                 return;
-            this._showOptionsTimer = setTimeout(this._showOptions.bind(this, buttonsProvider), 500);
+            this._showOptionsTimer = setTimeout(this._showOptions.bind(this, buttonsProvider), 200);
         }
 
         function mouseUp(e)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to