Automatically wrap long lines if wrap quotation is enabled.
+2001-10-10 [darko] 0.6.3.claws5
+
+ * src/gtkstext.c
+ proper calculation of right margin if smart wrapping is enabled
+ * src/compose.c
+ automatically wrap long lines if wrap quotation is enabled
+
2001-10-09 [alfons] 0.6.3.claws4
* src/summaryview.c
MICRO_VERSION=3
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=claws4
+EXTRA_VERSION=claws5
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl
gtk_editable_set_position(GTK_EDITABLE(text), 0);
gtk_stext_set_point(text, 0);
+ if (quote && prefs_common.linewrap_quote) {
+ compose_wrap_line_all(compose);
+ }
+
gtk_stext_thaw(text);
gtk_widget_grab_focus(compose->text);
max_display_pixels = text->wrap_rmargin * ch_width;
}
- if (GTK_EDITABLE (text)->editable || !text->word_wrap)
+ /* SYLPHEED - we don't draw ugly word wrapping thing
+ * if our wrap margin is set */
+ if (!text->wrap_rmargin &&
+ ((GTK_EDITABLE (text)->editable || !text->word_wrap)))
max_display_pixels -= LINE_WRAP_ROOM;
lp.wraps = 0;