Index: ui/views/window/dialog_client_view.cc |
diff --git a/ui/views/window/dialog_client_view.cc b/ui/views/window/dialog_client_view.cc |
index fdc6c53328c1c6aee130fcb98a518054c0cec555..cb02193ca04f246b7fd6ab6e18cf1dd5dc4ed77f 100644 |
--- a/ui/views/window/dialog_client_view.cc |
+++ b/ui/views/window/dialog_client_view.cc |
@@ -338,6 +338,11 @@ void DialogClientView::CreateFootnoteView() { |
AddChildView(footnote_view_); |
} |
+void DialogClientView::ChildPreferredSizeChanged(View* child) { |
Evan Stade
2013/05/07 22:25:11
yes, but also for ChildVisibilityChanged()
Dan Beam
2013/05/08 00:54:10
Done.
|
+ if (child == footnote_view_ || child == extra_view_) |
+ Layout(); |
+} |
+ |
//////////////////////////////////////////////////////////////////////////////// |
// DialogClientView, private: |