diff options
Diffstat (limited to 'widgets/text/e-text.h')
-rw-r--r-- | widgets/text/e-text.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/text/e-text.h b/widgets/text/e-text.h index a233501293..125804cf72 100644 --- a/widgets/text/e-text.h +++ b/widgets/text/e-text.h @@ -68,6 +68,7 @@ BEGIN_GNOME_DECLS * line_wrap boolean RW Line wrap when not editing. * break_characters string RW List of characters to optionally break on. * max_lines int RW Number of lines possible when doing line wrap. + * draw_borders boolean RW Whether to draw borders. */ #define E_TYPE_TEXT (e_text_get_type ()) @@ -175,6 +176,7 @@ struct _EText { guint pointer_in : 1; /* Is the pointer currently over us? */ guint default_cursor_shown : 1; /* Is the default cursor currently shown? */ + guint draw_borders : 1; /* Draw borders? */ guint line_wrap : 1; /* Do line wrap */ gchar *break_characters; /* Characters to optionally break after */ |