aboutsummaryrefslogtreecommitdiff
path: root/src/action.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-09-04 02:08:34 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-09-04 02:08:34 +0000
commit9dfab67b1e17a2ad3e56c1d2e53e5a68554a81d2 (patch)
tree190352c49b4eb681d8c2ab88b02bef17f2f70207 /src/action.c
parent610dc04adc670f83bbcfe666daf05925c291e10d (diff)
action.c: fixed wrong insertion point at TextView.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1135 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/action.c')
-rw-r--r--src/action.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/action.c b/src/action.c
index 1d7dbd0c..d4f22aa1 100644
--- a/src/action.c
+++ b/src/action.c
@@ -581,6 +581,7 @@ static gboolean execute_actions(gchar *action, GSList *msg_list,
gtk_text_buffer_get_iter_at_offset
(textbuf, &start_iter, body_pos);
gtk_text_buffer_get_end_iter(textbuf, &end_iter);
+ gtk_text_buffer_place_cursor(textbuf, &start_iter);
}
msg_str = gtk_text_buffer_get_text
(textbuf, &start_iter, &end_iter, FALSE);