diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-08-02 13:37:33 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-08-02 13:37:33 +0800 |
commit | e2d0dbab64ff7c546a2c7883d3d8da489a82798b (patch) | |
tree | 5890088a783efb10062bbe83ef1a64ddcbec34c5 /mail/mail-send-recv.c | |
parent | dc7029d5b6fb8d5214186d14f0cdf24ba121c866 (diff) | |
download | gsoc2013-evolution-e2d0dbab64ff7c546a2c7883d3d8da489a82798b.tar.gz gsoc2013-evolution-e2d0dbab64ff7c546a2c7883d3d8da489a82798b.tar.zst gsoc2013-evolution-e2d0dbab64ff7c546a2c7883d3d8da489a82798b.zip |
Fixes bug #335241
svn path=/trunk/; revision=32460
Diffstat (limited to 'mail/mail-send-recv.c')
-rw-r--r-- | mail/mail-send-recv.c | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c index 00d8f81fff..3fcf6a044b 100644 --- a/mail/mail-send-recv.c +++ b/mail/mail-send-recv.c @@ -308,6 +308,21 @@ static send_info_t get_receive_type(const char *url) return SEND_INVALID; } +gboolean +dialog_map (GtkWidget *window, GdkEvent *event, GtkWidget *table) +{ + int h, w; + + w = table->allocation.width + 30 /* Spacing around the table */; + h = table->allocation.height + 60 /* Cancell All button and Seperator and outer spacing */; + + if (w > 750) + w = 750; + if (h > 400) + h = 400; + gtk_widget_set_usize (window, w, h); +} + static struct _send_data * build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destination) { @@ -332,7 +347,7 @@ build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destinati gtk_widget_ensure_style ((GtkWidget *)gd); gtk_container_set_border_width ((GtkContainer *)gd->vbox, 0); - gtk_container_set_border_width ((GtkContainer *)gd->action_area, 12); + gtk_container_set_border_width ((GtkContainer *)gd->action_area, 6); stop = (GtkButton *)e_gtk_button_new_with_icon(_("Cancel _All"), GTK_STOCK_CANCEL); gtk_widget_show((GtkWidget *)stop); @@ -360,7 +375,7 @@ build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destinati g_object_unref (iter); table = (GtkTable *) gtk_table_new (num_sources, 4, FALSE); - gtk_container_set_border_width ((GtkContainer *) table, 12); + gtk_container_set_border_width ((GtkContainer *) table, 6); gtk_table_set_row_spacings (table, 6); gtk_table_set_col_spacings (table, 6); @@ -507,6 +522,7 @@ build_dialog (EAccountList *accounts, CamelFolder *outbox, const char *destinati gtk_widget_show (GTK_WIDGET (gd)); g_signal_connect (gd, "response", G_CALLBACK (dialog_response), data); + g_signal_connect (gd, "map-event", G_CALLBACK (dialog_map), table); g_object_weak_ref ((GObject *) gd, (GWeakNotify) dialog_destroy_cb, data); |