From 95eec768b6f7be223d9e44334836f6187ace8aa9 Mon Sep 17 00:00:00 2001 From: Darko Koruga Date: Sun, 25 Jan 2004 15:46:07 +0000 Subject: [PATCH] Fix wrap all long lines toolbar button to wrap all lines. --- ChangeLog.claws | 8 ++++++++ configure.ac | 2 +- src/compose.c | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog.claws b/ChangeLog.claws index d22fc5297..aab9876f9 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,11 @@ +2004-01-25 [darko] 0.9.8claws50 + + * src/compose.c + make "Wrap all long lines" toolbar button wrap all + long lines not just the current line + patch by I. Oshadi Jayawardena + + 2004-01-25 [alfons] 0.9.8claws49 * src/procmime.c diff --git a/configure.ac b/configure.ac index 9eae8afcc..b1b935e73 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=8 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=49 +EXTRA_VERSION=50 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/compose.c b/src/compose.c index 0d37d831b..f642e4d2a 100644 --- a/src/compose.c +++ b/src/compose.c @@ -1494,7 +1494,7 @@ void compose_toolbar_cb(gint action, gpointer data) compose_ext_editor_cb(compose, 0, NULL); break; case A_LINEWRAP: - compose_wrap_line(compose); + compose_wrap_line_all(compose); break; case A_ADDRBOOK: compose_address_cb(compose, 0, NULL); -- 2.25.1