diff options
author | yusukes@google.com <yusukes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-07 03:25:16 +0000 |
---|---|---|
committer | yusukes@google.com <yusukes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-07 03:25:16 +0000 |
commit | ae45415af43626cb47df003b1abd14d732ebb13c (patch) | |
tree | 2d350487f94b939a05ca9e231c322188bd08d0fd /views | |
parent | 65086eadd2a68f07bd15f888ac4cb9e6c0758d1e (diff) | |
download | chromium_src-ae45415af43626cb47df003b1abd14d732ebb13c.zip chromium_src-ae45415af43626cb47df003b1abd14d732ebb13c.tar.gz chromium_src-ae45415af43626cb47df003b1abd14d732ebb13c.tar.bz2 |
Explicitly call gtk_widget_show_all() to show the treeview in the language config dialog.
BUG=chromium-os:2877
TEST=manual. verified that the tree view widget is shown as expected.
Review URL: http://codereview.chromium.org/2038001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46656 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r-- | views/controls/table/native_table_gtk.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/views/controls/table/native_table_gtk.cc b/views/controls/table/native_table_gtk.cc index 4709cf2..e8f631f 100644 --- a/views/controls/table/native_table_gtk.cc +++ b/views/controls/table/native_table_gtk.cc @@ -270,6 +270,8 @@ void NativeTableGtk::CreateNativeControl() { // Updates the gtk model with the actual model. if (table_->model()) OnRowsAdded(0, table_->model()->RowCount()); + + gtk_widget_show_all(native_view()); } void NativeTableGtk::InsertTextColumn(const TableColumn& column, int index) { |