From 2c0d8ac81973706da8d5508c0b6c04ab4662391e Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Wed, 7 Feb 2007 18:09:35 +0000 Subject: [PATCH] fixed motion request condition which was wrongly ported with my last Wed Feb 7 19:03:28 2007 Tim Janik * gtk/gtkentry.c (gtk_entry_motion_notify): fixed motion request condition which was wrongly ported with my last commit. svn path=/trunk/; revision=17274 --- ChangeLog | 5 +++++ gtk/gtkentry.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 59dcfd0cb0..aa239b1de4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Feb 7 19:03:28 2007 Tim Janik + + * gtk/gtkentry.c (gtk_entry_motion_notify): fixed motion request + condition which was wrongly ported with my last commit. + Tue Feb 6 15:53:59 2007 Tim Janik * gtk/gtktextview.c (gtk_text_view_motion_event): diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 9da426264a..2cf8f8df92 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -1872,8 +1872,7 @@ gtk_entry_motion_notify (GtkWidget *widget, if (entry->select_lines) return TRUE; - if (entry->text_area != event->window) - gdk_event_request_motions (event); + gdk_event_request_motions (event); if (entry->in_drag) {