aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeter Harvey <peter.a.harvey@gmail.com>2006-01-22 07:54:23 +0800
committerPeter Anthony Harvey <paharvey@src.gnome.org>2006-01-22 07:54:23 +0800
commit550513c30a2191f88c5c39c37659027abc2927e6 (patch)
treeaf878ce1bec2d2fc75fc3b3d37abf44bce30535f /src
parentc4a28c0e1450ebbf70a83a9c5ee94aff0d9b7d34 (diff)
downloadgsoc2013-epiphany-550513c30a2191f88c5c39c37659027abc2927e6.tar
gsoc2013-epiphany-550513c30a2191f88c5c39c37659027abc2927e6.tar.gz
gsoc2013-epiphany-550513c30a2191f88c5c39c37659027abc2927e6.tar.bz2
gsoc2013-epiphany-550513c30a2191f88c5c39c37659027abc2927e6.tar.lz
gsoc2013-epiphany-550513c30a2191f88c5c39c37659027abc2927e6.tar.xz
gsoc2013-epiphany-550513c30a2191f88c5c39c37659027abc2927e6.tar.zst
gsoc2013-epiphany-550513c30a2191f88c5c39c37659027abc2927e6.zip
src/ephy-window.c
2006-01-22 Peter Harvey <peter.a.harvey@gmail.com> * src/ephy-window.c Fixed the mouse cursor entry/exit code for the toolbar. I have a suspicion that a bug may have been fixed in Gtk+ because this solution was tried before. Bug #326817.
Diffstat (limited to 'src')
-rw-r--r--src/ephy-window.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index d891c078e..64b17bb3f 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -1093,8 +1093,7 @@ tool_item_enter_cb (GtkWidget *proxy,
GdkEventCrossing *event,
EphyWindow *window)
{
- if (event->mode == GDK_CROSSING_NORMAL &&
- event->detail == GDK_NOTIFY_NONLINEAR)
+ if (event->mode == GDK_CROSSING_NORMAL)
{
GtkToolItem *item;
GtkAction *action;
@@ -1122,8 +1121,7 @@ tool_item_leave_cb (GtkWidget *proxy,
GdkEventCrossing *event,
EphyWindow *window)
{
- if (event->mode == GDK_CROSSING_NORMAL &&
- event->detail == GDK_NOTIFY_NONLINEAR)
+ if (event->mode == GDK_CROSSING_NORMAL)
{
gtk_statusbar_pop (GTK_STATUSBAR (window->priv->statusbar),
window->priv->help_message_cid);