Title: [108967] trunk/Source/WebCore
Revision
108967
Author
yu...@chromium.org
Date
2012-02-27 01:00:40 -0800 (Mon, 27 Feb 2012)

Log Message

Web Inspector: counter graphs should resize after console showing
https://bugs.webkit.org/show_bug.cgi?id=79640

Invoke Panel.doResize after showing drawer.

Reviewed by Pavel Feldman.

* inspector/front-end/Drawer.js:
(WebInspector.Drawer.prototype.show.animationFinished):
(WebInspector.Drawer.prototype.show):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (108966 => 108967)


--- trunk/Source/WebCore/ChangeLog	2012-02-27 08:51:14 UTC (rev 108966)
+++ trunk/Source/WebCore/ChangeLog	2012-02-27 09:00:40 UTC (rev 108967)
@@ -1,3 +1,16 @@
+2012-02-27  Yury Semikhatsky  <yu...@chromium.org>
+
+        Web Inspector: counter graphs should resize after console showing
+        https://bugs.webkit.org/show_bug.cgi?id=79640
+
+        Invoke Panel.doResize after showing drawer.
+
+        Reviewed by Pavel Feldman.
+
+        * inspector/front-end/Drawer.js:
+        (WebInspector.Drawer.prototype.show.animationFinished):
+        (WebInspector.Drawer.prototype.show):
+
 2012-02-27  Dan Beam  <db...@chromium.org>
 
         Web Inspector: Close TabbedPanes on middle click of tab handle

Modified: trunk/Source/WebCore/inspector/front-end/Drawer.js (108966 => 108967)


--- trunk/Source/WebCore/inspector/front-end/Drawer.js	2012-02-27 08:51:14 UTC (rev 108966)
+++ trunk/Source/WebCore/inspector/front-end/Drawer.js	2012-02-27 09:00:40 UTC (rev 108967)
@@ -123,7 +123,7 @@
         
         function animationFinished()
         {
-            WebInspector.inspectorView.currentPanel().statusBarResized();
+            WebInspector.inspectorView.currentPanel().doResize();
             if (this._view && this._view.afterShow)
                 this._view.afterShow();
             delete this._currentAnimation;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to