From: Paul Mangan Date: Sun, 23 Oct 2005 07:15:46 +0000 (+0000) Subject: 2005-10-23 [paul] 1.9.15cvs94 X-Git-Tag: rel_1_9_99~41 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=9685347f542eade9e9b12af862ba8a86948a41a7;hp=6951c1ef247cfa9fcc3bd63f20f9a71d003d37ed 2005-10-23 [paul] 1.9.15cvs94 * src/compose.c when using Folder Pref 'Default To for replies' make the entry in the Compose window bold Patch by Fabien Vantard --- diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index 7f53487da..354c3e31e 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,11 @@ +2005-10-23 [paul] 1.9.15cvs94 + + * src/compose.c + when using Folder Pref 'Default To for + replies' make the entry in the Compose + window bold + Patch by Fabien Vantard + 2005-10-22 [colin] 1.9.15cvs93 * src/codeconv.c diff --git a/PATCHSETS b/PATCHSETS index c2a8fecf1..9fc25b687 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -930,3 +930,4 @@ ( cvs diff -u -r 1.2.16.1 -r 1.2.16.2 src/pixmaps/new.xpm; cvs diff -u -r 1.2.16.2 -r 1.2.16.3 src/pixmaps/unread.xpm; ) > 1.9.15cvs91.patchset ( cvs diff -u -r 1.65.2.41 -r 1.65.2.42 src/codeconv.c; ) > 1.9.15cvs92.patchset ( cvs diff -u -r 1.65.2.42 -r 1.65.2.43 src/codeconv.c; ) > 1.9.15cvs93.patchset +( cvs diff -u -r 1.382.2.187 -r 1.382.2.188 src/compose.c; ) > 1.9.15cvs94.patchset diff --git a/configure.ac b/configure.ac index 5c53c2e18..30231d413 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=15 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=93 +EXTRA_VERSION=94 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/compose.c b/src/compose.c index 642db7f2b..877034d33 100644 --- a/src/compose.c +++ b/src/compose.c @@ -2231,6 +2231,8 @@ static void compose_reply_set_entry(Compose *compose, MsgInfo *msginfo, compose_entry_append(compose, msginfo->folder->prefs->default_reply_to, COMPOSE_TO); + compose_entry_mark_default_to(compose, + msginfo->folder->prefs->default_reply_to); } else { gchar *tmp1 = NULL; Xstrdup_a(tmp1, msginfo->from, return);