aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-item.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-10-06 02:49:52 +0800
committerChris Lahey <clahey@src.gnome.org>2001-10-06 02:49:52 +0800
commitb459329067b9bab7d08ccec9ba22f8d9ea7f25c8 (patch)
treeb7a930259a0c1e61cb05e5c4fc61ae60c7c2579a /widgets/table/e-table-item.c
parent081bd4e3228f99ae3149fa5631fab41038b5d56c (diff)
downloadgsoc2013-evolution-b459329067b9bab7d08ccec9ba22f8d9ea7f25c8.tar
gsoc2013-evolution-b459329067b9bab7d08ccec9ba22f8d9ea7f25c8.tar.gz
gsoc2013-evolution-b459329067b9bab7d08ccec9ba22f8d9ea7f25c8.tar.bz2
gsoc2013-evolution-b459329067b9bab7d08ccec9ba22f8d9ea7f25c8.tar.lz
gsoc2013-evolution-b459329067b9bab7d08ccec9ba22f8d9ea7f25c8.tar.xz
gsoc2013-evolution-b459329067b9bab7d08ccec9ba22f8d9ea7f25c8.tar.zst
gsoc2013-evolution-b459329067b9bab7d08ccec9ba22f8d9ea7f25c8.zip
Fixed the uniform_row_height + confirm_row_hieght_cache crash.
2001-10-05 Christopher James Lahey <clahey@ximian.com> * e-table-item.c (eti_set_arg): Fixed the uniform_row_height + confirm_row_hieght_cache crash. svn path=/trunk/; revision=13452
Diffstat (limited to 'widgets/table/e-table-item.c')
-rw-r--r--widgets/table/e-table-item.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index 162dd3aede..d229d0de4c 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -1252,12 +1252,16 @@ eti_set_arg (GtkObject *o, GtkArg *arg, guint arg_id)
e_table_item_focus (eti, cursor_col != -1 ? cursor_col : 0, view_to_model_row(eti, GTK_VALUE_INT (*arg)), 0);
break;
case ARG_UNIFORM_ROW_HEIGHT:
- eti->uniform_row_height = GTK_VALUE_BOOL (*arg);
- free_height_cache(eti);
- eti->needs_compute_height = 1;
- e_canvas_item_request_reflow (GNOME_CANVAS_ITEM (eti));
- eti->needs_redraw = 1;
- gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (eti));
+ if (eti->uniform_row_height != GTK_VALUE_BOOL (*arg)) {
+ eti->uniform_row_height = GTK_VALUE_BOOL (*arg);
+ if (GTK_OBJECT_FLAGS(eti) & GNOME_CANVAS_ITEM_REALIZED) {
+ free_height_cache(eti);
+ eti->needs_compute_height = 1;
+ e_canvas_item_request_reflow (GNOME_CANVAS_ITEM (eti));
+ eti->needs_redraw = 1;
+ gnome_canvas_item_request_update (GNOME_CANVAS_ITEM (eti));
+ }
+ }
break;
}
eti->needs_redraw = 1;