aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-item.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-04-20 10:00:23 +0800
committerChris Lahey <clahey@src.gnome.org>2001-04-20 10:00:23 +0800
commit270a8bdda829d69f1d2849f387391dddba7851fa (patch)
tree50da232c6d47f74a566a2a22f265d73e598f96d6 /widgets/table/e-table-item.c
parent995e7b0612b6779818053d142b6cbfd6f1ff1b39 (diff)
downloadgsoc2013-evolution-270a8bdda829d69f1d2849f387391dddba7851fa.tar
gsoc2013-evolution-270a8bdda829d69f1d2849f387391dddba7851fa.tar.gz
gsoc2013-evolution-270a8bdda829d69f1d2849f387391dddba7851fa.tar.bz2
gsoc2013-evolution-270a8bdda829d69f1d2849f387391dddba7851fa.tar.lz
gsoc2013-evolution-270a8bdda829d69f1d2849f387391dddba7851fa.tar.xz
gsoc2013-evolution-270a8bdda829d69f1d2849f387391dddba7851fa.tar.zst
gsoc2013-evolution-270a8bdda829d69f1d2849f387391dddba7851fa.zip
Submit a signal even if there are no extras.
2001-04-19 Christopher James Lahey <clahey@ximian.com> * e-table-header.c (eth_calc_widths): Submit a signal even if there are no extras. * e-table-item.c (eti_request_column_width): Don't compute widths if our cells aren't realized yet. * e-tree.c: Call e_table_header_update_horizontal whenever our data changes. svn path=/trunk/; revision=9465
Diffstat (limited to 'widgets/table/e-table-item.c')
-rw-r--r--widgets/table/e-table-item.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index ed4c6985db..5b2875425a 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -968,7 +968,7 @@ eti_request_column_width (ETableHeader *eth, int col, ETableItem *eti)
{
int width = 0;
- if (eti->cell_views) {
+ if (eti->cell_views && eti->cell_views_realized) {
width = e_cell_max_width (eti->cell_views[col], view_to_model_col(eti, col), col);
}