Title: [108987] trunk/Source/WebCore
Revision
108987
Author
yu...@chromium.org
Date
2012-02-27 05:47:26 -0800 (Mon, 27 Feb 2012)

Log Message

Web Inspector: repaint counter graphs when timeline splitter moves
https://bugs.webkit.org/show_bug.cgi?id=79644

Immediately refresh timeline panel on splitter move.

Reviewed by Pavel Feldman.

* inspector/front-end/TimelinePanel.js:
(WebInspector.TimelinePanel.prototype._splitterDragging):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (108986 => 108987)


--- trunk/Source/WebCore/ChangeLog	2012-02-27 13:14:35 UTC (rev 108986)
+++ trunk/Source/WebCore/ChangeLog	2012-02-27 13:47:26 UTC (rev 108987)
@@ -1,3 +1,15 @@
+2012-02-27  Yury Semikhatsky  <yu...@chromium.org>
+
+        Web Inspector: repaint counter graphs when timeline splitter moves
+        https://bugs.webkit.org/show_bug.cgi?id=79644
+
+        Immediately refresh timeline panel on splitter move.
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/front-end/TimelinePanel.js:
+        (WebInspector.TimelinePanel.prototype._splitterDragging):
+
 2012-02-27  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Unreviewed. Fix make distcheck.

Modified: trunk/Source/WebCore/inspector/front-end/TimelinePanel.js (108986 => 108987)


--- trunk/Source/WebCore/inspector/front-end/TimelinePanel.js	2012-02-27 13:14:35 UTC (rev 108986)
+++ trunk/Source/WebCore/inspector/front-end/TimelinePanel.js	2012-02-27 13:47:26 UTC (rev 108987)
@@ -154,6 +154,7 @@
         var top = event.pageY + this._dragOffset
         this._setSplitterPosition(top);
         event.preventDefault();
+        this._refresh();
     },
 
     /**
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to