diff options
author | Milan Crha <mcrha@redhat.com> | 2011-08-26 00:14:14 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 20:08:56 +0800 |
commit | 8e954066b8f73037a980b53b4797e2188d3e2ec9 (patch) | |
tree | e84d8db3616b02aba9ca06b9a2e3d9498b920fcb /plugins | |
parent | a508240b2a6b1eb20f354735b27a11df3736ca10 (diff) | |
download | gsoc2013-evolution-8e954066b8f73037a980b53b4797e2188d3e2ec9.tar.gz gsoc2013-evolution-8e954066b8f73037a980b53b4797e2188d3e2ec9.tar.zst gsoc2013-evolution-8e954066b8f73037a980b53b4797e2188d3e2ec9.zip |
Bug #655490 - Location chooser dialog for Weather calendar is too small
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/calendar-weather/calendar-weather.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/calendar-weather/calendar-weather.c b/plugins/calendar-weather/calendar-weather.c index 6c03da3b0a..5095106254 100644 --- a/plugins/calendar-weather/calendar-weather.c +++ b/plugins/calendar-weather/calendar-weather.c @@ -266,7 +266,7 @@ create_source_selector (ESource *source) gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (treeview), -1, "location", text, "text", 0, NULL); content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog)); - gtk_container_add (GTK_CONTAINER (content_area), scrolledwindow); + gtk_box_pack_start (GTK_BOX (content_area), scrolledwindow, TRUE, TRUE, 0); gtk_container_set_border_width (GTK_CONTAINER (scrolledwindow), 6); gtk_box_set_spacing (GTK_BOX (content_area), 6); |