aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/text/e-text.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-12-27 06:34:30 +0800
committerChris Lahey <clahey@src.gnome.org>2000-12-27 06:34:30 +0800
commitc1527a0f74533dd131576fcfc7b23188ff1466ba (patch)
treeb12352ff73510f9e947d518b8864e3248fb29154 /widgets/text/e-text.c
parent023d4432d4d03ea13a0d7b600d2b46b308bf6772 (diff)
downloadgsoc2013-evolution-c1527a0f74533dd131576fcfc7b23188ff1466ba.tar
gsoc2013-evolution-c1527a0f74533dd131576fcfc7b23188ff1466ba.tar.gz
gsoc2013-evolution-c1527a0f74533dd131576fcfc7b23188ff1466ba.tar.bz2
gsoc2013-evolution-c1527a0f74533dd131576fcfc7b23188ff1466ba.tar.lz
gsoc2013-evolution-c1527a0f74533dd131576fcfc7b23188ff1466ba.tar.xz
gsoc2013-evolution-c1527a0f74533dd131576fcfc7b23188ff1466ba.tar.zst
gsoc2013-evolution-c1527a0f74533dd131576fcfc7b23188ff1466ba.zip
Added a "draw_background" argument. Set the default for the
2000-12-26 Christopher James Lahey <clahey@helixcode.com> * gal/e-text/e-entry.c: Added a "draw_background" argument. Set the default for the "draw_background" argument to the contained EText to TRUE. * gal/e-text/e-text.c: Changed the default for the "draw_background" argument to FALSE. svn path=/trunk/; revision=7176
Diffstat (limited to 'widgets/text/e-text.c')
-rw-r--r--widgets/text/e-text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/text/e-text.c b/widgets/text/e-text.c
index 3345493ad7..e9a448b9c2 100644
--- a/widgets/text/e-text.c
+++ b/widgets/text/e-text.c
@@ -379,7 +379,7 @@ e_text_init (EText *text)
text->dbl_timeout = 0;
text->tpl_timeout = 0;
- text->draw_background = 1;
+ text->draw_background = FALSE;
e_canvas_item_set_reflow_callback(GNOME_CANVAS_ITEM(text), e_text_reflow);
}