Not reviewed: follow up to r121843, reduce inspector dock timeout to 200ms.
authorpfeldman@chromium.org <pfeldman@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 4 Jul 2012 13:55:10 +0000 (13:55 +0000)
committerpfeldman@chromium.org <pfeldman@chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 4 Jul 2012 13:55:10 +0000 (13:55 +0000)
* inspector/front-end/StatusBarButton.js:
(WebInspector.StatusBarButton.prototype.makeLongClickEnabled.mouseDown):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121849 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/inspector/front-end/StatusBarButton.js

index 2656054..fdf6c15 100644 (file)
@@ -1,3 +1,10 @@
+2012-07-04  'Pavel Feldman'  <pfeldman@chromium.org>
+
+        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  <vollick@chromium.org>
 
         [chromium] Correctly reject accelerated animations with certain rotations.
index e0f2a05..78f0405 100644 (file)
@@ -172,7 +172,7 @@ WebInspector.StatusBarButton.prototype = {
         {
             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)