diff options
-rw-r--r-- | widgets/misc/ChangeLog | 14 | ||||
-rw-r--r-- | widgets/misc/e-attachment-bar.c | 4 |
2 files changed, 13 insertions, 5 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index c51b322856..a00f43d2fc 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,8 @@ +2006-06-08 Jeffrey Stedfast <fejj@novell.com> + + * e-attachment-bar.c (attachment_destroy): Call update (bar); the + rest of the fix for bug #178631. + 2006-06-07 Federico Mena Quintero <federico@novell.com> * e-map.c (e_map_class_init): Don't use gtk_signal_new() for the @@ -7,15 +12,16 @@ 2006-06-02 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fixes bug 343494 - * e-search-bar.c: (add_button): Use gtk_button_set_image if GTK+ is + + * e-search-bar.c (add_button): Use gtk_button_set_image if GTK+ is 2.6 or higher. 2006-05-30 Li Yuan <li.yuan@sun.com> Fix for #343280. - * e-search-bar.c: (add_button): - No need to add label when we use gtk_button_new_from_stock - to create a button. + + * e-search-bar.c (add_button): No need to add label when we use + gtk_button_new_from_stock to create a button. 2006-05-26 Jeffrey Stedfast <fejj@novell.com> diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c index 88c0a50d74..3efe865681 100644 --- a/widgets/misc/e-attachment-bar.c +++ b/widgets/misc/e-attachment-bar.c @@ -125,8 +125,10 @@ attachment_destroy (EAttachmentBar *bar, EAttachment *attachment) if (bar->priv->batch_unref) return; - if (g_ptr_array_remove (bar->priv->attachments, attachment)) + if (g_ptr_array_remove (bar->priv->attachments, attachment)) { + update (bar); g_signal_emit (bar, signals[CHANGED], 0); + } } static void |