summaryrefslogtreecommitdiff
path: root/src/netwm.c
diff options
context:
space:
mode:
authorOlivier Fourdan <fourdan@xfce.org>2011-09-12 10:18:33 +0200
committerOlivier Fourdan <fourdan@xfce.org>2011-09-12 10:18:33 +0200
commitb1decacb73ec0274c7916e2d28f0d60ef15f7a21 (patch)
tree4ccad7e0c15e63036f83bc4df3be0d3203a8fc81 /src/netwm.c
parent3f76f971e61fa781c1eb2c43b0411c4148ec4275 (diff)
downloadxfwm4-b1decacb73ec0274c7916e2d28f0d60ef15f7a21.tar.gz
Revert "Fix panel plugins such as verve not receiving focus in focus follow mouse mode (bug #6617)."
This reverts commit 3f76f971e61fa781c1eb2c43b0411c4148ec4275.
Diffstat (limited to 'src/netwm.c')
-rw-r--r--src/netwm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/netwm.c b/src/netwm.c
index f95567c49..fcd6123d6 100644
--- a/src/netwm.c
+++ b/src/netwm.c
@@ -1401,13 +1401,13 @@ clientHandleNetActiveWindow (Client *c, guint32 timestamp, gboolean source_is_ap
}
else
{
- clientActivate (c, ev_time);
+ clientActivate (c, ev_time, source_is_application);
}
}
else
{
/* The request is either from a pager or an older client, use the most accurate timestamp */
- clientActivate (c, getXServerTime (display_info));
+ clientActivate (c, getXServerTime (display_info), source_is_application);
}
}