aboutsummaryrefslogtreecommitdiff
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
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
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/action.c1
3 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f61173d..54a33908 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-04
+
+ * src/action.c: execute_actions(): fixed wrong insertion point at
+ TextView.
+
2006-08-23
* libsylph/imap.[ch]
diff --git a/ChangeLog.ja b/ChangeLog.ja
index bacb5548..3b01ba13 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,8 @@
+2006-09-04
+
+ * src/action.c: execute_actions(): TextView で挿入ポイントを誤る
+ のを修正。
+
2006-08-23
* libsylph/imap.[ch]
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);