diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-11-24 00:24:18 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-11-24 00:24:18 +0000 |
commit | 4da8e00b62f24d65d8c97be5aea43e1a5dae3a37 (patch) | |
tree | c9a39901067bc0f57f9e14c05afa099329ba5fb4 /gdk/gdkevents.c | |
parent | 06ac4f721b4ca1e46616b75fc4d4afcb5b1d68ea (diff) | |
download | gtk+-4da8e00b62f24d65d8c97be5aea43e1a5dae3a37.tar.gz |
Handle events in windows other than widget->event_window properly.
Fri Nov 23 19:22:50 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c: Handle events in windows other
than widget->event_window properly. (#65079, reported
by Damon Chaplin)
* gdk/gdkevents.c (gdk_event_get_coords): Fix x/y bug.
Diffstat (limited to 'gdk/gdkevents.c')
-rw-r--r-- | gdk/gdkevents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdkevents.c b/gdk/gdkevents.c index 4b92195538..fce4dbcbe3 100644 --- a/gdk/gdkevents.c +++ b/gdk/gdkevents.c @@ -603,7 +603,7 @@ gdk_event_get_coords (GdkEvent *event, if (x_win) *x_win = x; if (y_win) - *y_win = x; + *y_win = y; return fetched; } |