2008-01-07 [colin] 3.2.0cvs28

* src/folderview.c
		Fix scrolling to bottom when drag and dropping
	* src/summaryview.c
		Fix bug 1445, 'Display sender using addressbook: fails
		when From: isn't an email address'
This commit is contained in:
Colin Leroy 2008-01-07 17:45:51 +00:00
parent fcf4186538
commit 586296c4cf
5 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2008-01-07 [colin] 3.2.0cvs28
* src/folderview.c
Fix scrolling to bottom when drag and dropping
* src/summaryview.c
Fix bug 1445, 'Display sender using addressbook: fails
when From: isn't an email address'
2008-01-07 [wwp] 3.2.0cvs27
* src/prefs_actions.c

View file

@ -3164,3 +3164,4 @@
( cvs diff -u -r 1.9.2.21 -r 1.9.2.22 src/addressadd.c; ) > 3.2.0cvs25.patchset
( cvs diff -u -r 1.1.2.4 -r 1.1.2.5 src/addrcustomattr.c; cvs diff -u -r 1.1.2.15 -r 1.1.2.16 src/edittags.c; cvs diff -u -r 1.60.2.53 -r 1.60.2.54 src/prefs_actions.c; cvs diff -u -r 1.59.2.60 -r 1.59.2.61 src/prefs_filtering.c; cvs diff -u -r 1.12.2.51 -r 1.12.2.52 src/prefs_template.c; ) > 3.2.0cvs26.patchset
( cvs diff -u -r 1.60.2.54 -r 1.60.2.55 src/prefs_actions.c; cvs diff -u -r 1.59.2.61 -r 1.59.2.62 src/prefs_filtering.c; cvs diff -u -r 1.12.2.52 -r 1.12.2.53 src/prefs_template.c; ) > 3.2.0cvs27.patchset
( cvs diff -u -r 1.207.2.194 -r 1.207.2.195 src/folderview.c; cvs diff -u -r 1.395.2.346 -r 1.395.2.347 src/summaryview.c; ) > 3.2.0cvs28.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=2
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=27
EXTRA_VERSION=28
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -2902,7 +2902,7 @@ static gboolean folderview_drag_motion_cb(GtkWidget *widget,
GtkWidget *srcwidget;
if (y > height - 24 && height + vpos < total_height) {
gtk_adjustment_set_value(pos, (vpos+5 > height ? height : vpos+5));
gtk_adjustment_set_value(pos, (vpos+5 > total_height ? total_height : vpos+5));
gtk_adjustment_changed(pos);
}
if (y < 48 && y > 0) {

View file

@ -3009,7 +3009,7 @@ static gchar *summary_complete_address(const gchar *addr)
gint count;
gchar *res, *tmp, *email_addr;
if (addr == NULL)
if (addr == NULL || !strchr(addr, '@'))
return NULL;
Xstrdup_a(email_addr, addr, return NULL);