diff options
author | Mike Kestner <mkestner@ximian.com> | 2003-02-14 02:02:52 +0800 |
---|---|---|
committer | Mike Kestner <mkestner@src.gnome.org> | 2003-02-14 02:02:52 +0800 |
commit | b88c27e9b2cee31a7e152a6d39ada7fba49a1d22 (patch) | |
tree | facdaf0dbd1388e8f357b408d3d49391a6ea1a3f /widgets/table/e-table-header-item.c | |
parent | de7914dc3dcf9905e4423a107ca7bc043be75bf6 (diff) | |
download | gsoc2013-evolution-b88c27e9b2cee31a7e152a6d39ada7fba49a1d22.tar.gz gsoc2013-evolution-b88c27e9b2cee31a7e152a6d39ada7fba49a1d22.tar.zst gsoc2013-evolution-b88c27e9b2cee31a7e152a6d39ada7fba49a1d22.zip |
don't transform based on allocation position. Position isn't absolute now.
2003-02-13 Mike Kestner <mkestner@ximian.com>
* e-table-header-item.c (ethi_drag_motion): don't transform
based on allocation position. Position isn't absolute now.
svn path=/trunk/; revision=19902
Diffstat (limited to 'widgets/table/e-table-header-item.c')
-rw-r--r-- | widgets/table/e-table-header-item.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c index 36e9e0b20b..31c5386566 100644 --- a/widgets/table/e-table-header-item.c +++ b/widgets/table/e-table-header-item.c @@ -738,9 +738,6 @@ ethi_drag_motion (GtkWidget *widget, GdkDragContext *context, d(g_print ("y = %d, widget->allocation.y = %d, GTK_LAYOUT (widget)->vadjustment->value = %f\n", y, widget->allocation.y, GTK_LAYOUT (widget)->vadjustment->value)); - x -= widget->allocation.x; - y -= widget->allocation.y; - if (x < 20) direction |= ET_SCROLL_LEFT; if (x > widget->allocation.width - 20) |