diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-07-09 09:56:19 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-07-09 09:56:19 +0800 |
commit | 9f18b5b93450cb5a729910c1eeb4f2106e71bf4f (patch) | |
tree | 63fdb91c7631db9d4d9df987897d53e2fbeda3a8 /widgets/e-table | |
parent | d57e87fca120f15192221dd3927fe373ef9b69a7 (diff) | |
download | gsoc2013-evolution-9f18b5b93450cb5a729910c1eeb4f2106e71bf4f.tar gsoc2013-evolution-9f18b5b93450cb5a729910c1eeb4f2106e71bf4f.tar.gz gsoc2013-evolution-9f18b5b93450cb5a729910c1eeb4f2106e71bf4f.tar.bz2 gsoc2013-evolution-9f18b5b93450cb5a729910c1eeb4f2106e71bf4f.tar.lz gsoc2013-evolution-9f18b5b93450cb5a729910c1eeb4f2106e71bf4f.tar.xz gsoc2013-evolution-9f18b5b93450cb5a729910c1eeb4f2106e71bf4f.tar.zst gsoc2013-evolution-9f18b5b93450cb5a729910c1eeb4f2106e71bf4f.zip |
Don't call e_cell_event if we're not editing.
2000-07-08 Christopher James Lahey <clahey@helixcode.com>
* e-table-item.c (eti_event): Don't call e_cell_event if we're not
editing.
svn path=/trunk/; revision=3991
Diffstat (limited to 'widgets/e-table')
-rw-r--r-- | widgets/e-table/ChangeLog | 5 | ||||
-rw-r--r-- | widgets/e-table/e-table-item.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/widgets/e-table/ChangeLog b/widgets/e-table/ChangeLog index 3ba522c152..1b1aa42ab4 100644 --- a/widgets/e-table/ChangeLog +++ b/widgets/e-table/ChangeLog @@ -1,5 +1,10 @@ 2000-07-08 Christopher James Lahey <clahey@helixcode.com> + * e-table-item.c (eti_event): Don't call e_cell_event if we're not + editing. + +2000-07-08 Christopher James Lahey <clahey@helixcode.com> + * e-table-item.c (eti_table_model_changed): Commented out some unnecessary and buggy code. diff --git a/widgets/e-table/e-table-item.c b/widgets/e-table/e-table-item.c index 90fd37e168..8e0c07436c 100644 --- a/widgets/e-table/e-table-item.c +++ b/widgets/e-table/e-table-item.c @@ -1273,7 +1273,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e) } } - if (eti->cursor_row == view_to_model_row(eti, row) && eti->cursor_col == col){ + if (eti_editing(eti) && eti->cursor_row == view_to_model_row(eti, row) && eti->cursor_col == col){ e_table_item_focus (eti, col, view_to_model_row(eti, row), shifted); @@ -1319,7 +1319,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e) if (!find_cell (eti, e->button.x, e->button.y, &col, &row, &x1, &y1)) return TRUE; - if (eti->cursor_row == view_to_model_row(eti, row) && eti->cursor_col == col){ + if (eti_editing(eti) && eti->cursor_row == view_to_model_row(eti, row) && eti->cursor_col == col){ ecol = e_table_header_get_column (eti->header, col); ecell_view = eti->cell_views [col]; @@ -1369,7 +1369,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e) if (!find_cell (eti, e->motion.x, e->motion.y, &col, &row, &x1, &y1)) return TRUE; - if (eti->cursor_row == view_to_model_row(eti, row) && eti->cursor_col == col){ + if (eti_editing(eti) && eti->cursor_row == view_to_model_row(eti, row) && eti->cursor_col == col){ ecol = e_table_header_get_column (eti->header, col); ecell_view = eti->cell_views [col]; |