diff options
author | Miguel de Icaza <miguel@gnu.org> | 2000-02-07 21:08:33 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2000-02-07 21:08:33 +0800 |
commit | 99d71d11328fa1f6d2f0156de63a44142cf99d9c (patch) | |
tree | e9b25df47c42c250819ef9ec8e7dc21309bd6865 /widgets/table/e-table-header-item.c | |
parent | dec6d6b0971480b8910c301daa6218abe3f2eee0 (diff) | |
download | gsoc2013-evolution-99d71d11328fa1f6d2f0156de63a44142cf99d9c.tar gsoc2013-evolution-99d71d11328fa1f6d2f0156de63a44142cf99d9c.tar.gz gsoc2013-evolution-99d71d11328fa1f6d2f0156de63a44142cf99d9c.tar.bz2 gsoc2013-evolution-99d71d11328fa1f6d2f0156de63a44142cf99d9c.tar.lz gsoc2013-evolution-99d71d11328fa1f6d2f0156de63a44142cf99d9c.tar.xz gsoc2013-evolution-99d71d11328fa1f6d2f0156de63a44142cf99d9c.tar.zst gsoc2013-evolution-99d71d11328fa1f6d2f0156de63a44142cf99d9c.zip |
Setup the scroll region of the table canvas on size allocation.
2000-02-07 Miguel de Icaza <miguel@gnu.org>
* e-table.c (e_table_setup_table): Setup the scroll region of the
table canvas on size allocation.
(e_table_canvas_realize): Do not set the scrollregion here.
(e_table_canvas_init): Move root initialization here.
svn path=/trunk/; revision=1683
Diffstat (limited to 'widgets/table/e-table-header-item.c')
-rw-r--r-- | widgets/table/e-table-header-item.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c index 5f23f06fa3..e8f73fc432 100644 --- a/widgets/table/e-table-header-item.c +++ b/widgets/table/e-table-header-item.c @@ -364,8 +364,10 @@ ethi_realize (GnomeCanvasItem *item) ethi->normal_cursor = gdk_cursor_new (GDK_ARROW); - if (!ethi->font) + if (!ethi->font){ + g_warning ("Font had not been set for this ETableHeader"); ethi_font_load (ethi, "fixed"); + } /* * Now, configure DnD |