summaryrefslogtreecommitdiff
path: root/src/netwm.c
diff options
context:
space:
mode:
authorOlivier Fourdan <fourdan@xfce.org>2011-09-09 12:25:36 +0200
committerOlivier Fourdan <fourdan@xfce.org>2011-09-09 12:30:53 +0200
commit3f76f971e61fa781c1eb2c43b0411c4148ec4275 (patch)
treeec263b09a79b6658d426041659926c87f779bd9b /src/netwm.c
parentd89fc9d0718fb9496c9b866cc05d62d65d604467 (diff)
downloadxfwm4-3f76f971e61fa781c1eb2c43b0411c4148ec4275.tar.gz
Fix panel plugins such as verve not receiving focus in focus follow mouse mode (bug #6617).
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 fcd6123d6..f95567c49 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, source_is_application);
+ clientActivate (c, ev_time);
}
}
else
{
/* The request is either from a pager or an older client, use the most accurate timestamp */
- clientActivate (c, getXServerTime (display_info), source_is_application);
+ clientActivate (c, getXServerTime (display_info));
}
}