diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ChangeLog.ja | 5 | ||||
-rw-r--r-- | src/action.c | 1 |
3 files changed, 11 insertions, 0 deletions
@@ -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); |