diff options
author | Miguel de Icaza <miguel@helixcode.com> | 2000-12-25 16:29:30 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2000-12-25 16:29:30 +0800 |
commit | 5eef222ab4efe5df5ae7a9d45a2084b9bb9bf91c (patch) | |
tree | f34a657d983d10a1ea9eca33d0f201da2c3a6bab /addressbook/gui/widgets | |
parent | ca925e411cff837fd52e256d768f6895940bbbcc (diff) | |
download | gsoc2013-evolution-5eef222ab4efe5df5ae7a9d45a2084b9bb9bf91c.tar gsoc2013-evolution-5eef222ab4efe5df5ae7a9d45a2084b9bb9bf91c.tar.gz gsoc2013-evolution-5eef222ab4efe5df5ae7a9d45a2084b9bb9bf91c.tar.bz2 gsoc2013-evolution-5eef222ab4efe5df5ae7a9d45a2084b9bb9bf91c.tar.lz gsoc2013-evolution-5eef222ab4efe5df5ae7a9d45a2084b9bb9bf91c.tar.xz gsoc2013-evolution-5eef222ab4efe5df5ae7a9d45a2084b9bb9bf91c.tar.zst gsoc2013-evolution-5eef222ab4efe5df5ae7a9d45a2084b9bb9bf91c.zip |
Set draw background to FALSE.
2000-12-25 Miguel de Icaza <miguel@helixcode.com>
* gui/widgets/e-minicard.c (e_minicard_realize): Set draw
background to FALSE.
* gui/widgets/e-minicard-label.c (e_minicard_label_construct): ditto.
(e_minicard_label_construct): ditto
svn path=/trunk/; revision=7164
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-minicard-label.c | 2 | ||||
-rw-r--r-- | addressbook/gui/widgets/e-minicard.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/addressbook/gui/widgets/e-minicard-label.c b/addressbook/gui/widgets/e-minicard-label.c index 3bdf1f2c47..6795702454 100644 --- a/addressbook/gui/widgets/e-minicard-label.c +++ b/addressbook/gui/widgets/e-minicard-label.c @@ -245,6 +245,7 @@ e_minicard_label_construct (GnomeCanvasItem *item) "use_ellipsis", TRUE, "font_gdk", font, "fill_color", "black", + "draw_background", FALSE, NULL ); e_canvas_item_move_absolute(e_minicard_label->fieldname, 2, 1); @@ -258,6 +259,7 @@ e_minicard_label_construct (GnomeCanvasItem *item) "font_gdk", font, "fill_color", "black", "editable", TRUE, + "draw_background", FALSE, NULL ); e_canvas_item_move_absolute(e_minicard_label->field, ( e_minicard_label->width / 2 + 2), 1); diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c index 6bf1d57c9a..e313842193 100644 --- a/addressbook/gui/widgets/e-minicard.c +++ b/addressbook/gui/widgets/e-minicard.c @@ -294,6 +294,7 @@ e_minicard_realize (GnomeCanvasItem *item) #endif "fill_color_gdk", &canvas->style->fg[GTK_STATE_NORMAL], "text", "", + "draw_background", FALSE, NULL ); e_canvas_item_move_absolute(e_minicard->header_text, 6, 6); |