diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-05-23 01:25:36 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-05-23 01:25:36 +0800 |
commit | bc885bb22ebc81170ee0c6a602a836d4763777c7 (patch) | |
tree | 1fb6eb9185ea4ac4864574c25bc71cc4ead8b60d /widgets/table | |
parent | d8e1a022dfb4e2514bfc928cffcc734e4ba85faa (diff) | |
download | gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.gz gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.bz2 gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.lz gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.xz gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.tar.zst gsoc2013-evolution-bc885bb22ebc81170ee0c6a602a836d4763777c7.zip |
The double_click signal on the table item now emits the model row instead
2001-05-22 Christopher James Lahey <clahey@ximian.com>
* e-table-group-leaf.c (etgl_double_click): The double_click
signal on the table item now emits the model row instead of the
view row so don't do the view to model conversion here.
svn path=/trunk/; revision=9924
Diffstat (limited to 'widgets/table')
-rw-r--r-- | widgets/table/e-table-group-leaf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/widgets/table/e-table-group-leaf.c b/widgets/table/e-table-group-leaf.c index bbc3b663ac..d527991a41 100644 --- a/widgets/table/e-table-group-leaf.c +++ b/widgets/table/e-table-group-leaf.c @@ -121,8 +121,7 @@ etgl_cursor_activated (GtkObject *object, gint row, ETableGroupLeaf *etgl) static void etgl_double_click (GtkObject *object, gint row, gint col, GdkEvent *event, ETableGroupLeaf *etgl) { - if (row < E_TABLE_SUBSET(etgl->ets)->n_map) - e_table_group_double_click (E_TABLE_GROUP(etgl), E_TABLE_SUBSET(etgl->ets)->map_table[row], col, event); + e_table_group_double_click (E_TABLE_GROUP(etgl), row, col, event); } static gint |