aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/compose.c4
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 43e70fbc..cc516ad1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-06-15
+
+ * src/compose.c: made 'File/Insert signature' replace current
+ signature, or add it to the bottom.
+
2005-06-14
* src/textview.c: fixed slightly wrong scroll position when the
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 4b16c106..05d66f33 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,8 @@
+2005-06-15
+
+ * src/compose.c: 「ファイル/署名を挿入」が、現在の署名を置換、または
+ 末尾に追加するようにした。
+
2005-06-14
* src/textview.c: 表示されているメッセージが変更されたときにスクロール
diff --git a/src/compose.c b/src/compose.c
index 238402b4..24c8bed4 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -5346,7 +5346,7 @@ static void toolbar_sig_cb(GtkWidget *widget, gpointer data)
{
Compose *compose = (Compose *)data;
- compose_insert_sig(compose, FALSE, TRUE);
+ compose_insert_sig(compose, TRUE, TRUE);
}
static void toolbar_ext_editor_cb(GtkWidget *widget, gpointer data)
@@ -5612,7 +5612,7 @@ static void compose_insert_sig_cb(gpointer data, guint action,
{
Compose *compose = (Compose *)data;
- compose_insert_sig(compose, FALSE, TRUE);
+ compose_insert_sig(compose, TRUE, TRUE);
}
static gint compose_delete_cb(GtkWidget *widget, GdkEventAny *event,