aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-12-12 00:59:53 +0800
committerDan Winship <danw@src.gnome.org>2000-12-12 00:59:53 +0800
commit1443cce12e450e506891f355e7233d3c5afc13d2 (patch)
tree587c9ed89d9e13e4f8e0e7e815389bacea5ac19d /widgets
parente22c643dc64d469e6d4ecabe7d8077194896b1bf (diff)
downloadgsoc2013-evolution-1443cce12e450e506891f355e7233d3c5afc13d2.tar
gsoc2013-evolution-1443cce12e450e506891f355e7233d3c5afc13d2.tar.gz
gsoc2013-evolution-1443cce12e450e506891f355e7233d3c5afc13d2.tar.bz2
gsoc2013-evolution-1443cce12e450e506891f355e7233d3c5afc13d2.tar.lz
gsoc2013-evolution-1443cce12e450e506891f355e7233d3c5afc13d2.tar.xz
gsoc2013-evolution-1443cce12e450e506891f355e7233d3c5afc13d2.tar.zst
gsoc2013-evolution-1443cce12e450e506891f355e7233d3c5afc13d2.zip
Emit double_click signal with the model column, not the view column.
* e-table-item.c (eti_event): Emit double_click signal with the model column, not the view column. svn path=/trunk/; revision=6909
Diffstat (limited to 'widgets')
-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 1a6d866813..352037a249 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -1674,7 +1674,7 @@ eti_event (GnomeCanvasItem *item, GdkEvent *e)
button.y = y1;
gtk_signal_emit (GTK_OBJECT (eti), eti_signals [DOUBLE_CLICK],
- row, col, &button);
+ row, view_to_model_col (eti, col), &button);
break;
}
case GDK_MOTION_NOTIFY: {