event: leave_notify: handle titlebar correctly

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-12 14:32:36 +02:00
parent 9f34d20f08
commit 6178417b61
1 changed files with 3 additions and 4 deletions

View File

@ -457,15 +457,14 @@ event_handle_leavenotify(void *data __attribute__ ((unused)),
if(ev->mode != XCB_NOTIFY_MODE_NORMAL) if(ev->mode != XCB_NOTIFY_MODE_NORMAL)
return 0; return 0;
if((c = client_getbywin(ev->event))) if((c = client_getbytitlebarwin(ev->event)) || (c = client_getbywin(ev->event)))
{
if(globalconf.hooks.mouse_leave != LUA_REFNIL) if(globalconf.hooks.mouse_leave != LUA_REFNIL)
{ {
luaA_client_userdata_new(globalconf.L, c); luaA_client_userdata_new(globalconf.L, c);
luaA_dofunction(globalconf.L, globalconf.hooks.mouse_leave, 1, 0); luaA_dofunction(globalconf.L, globalconf.hooks.mouse_leave, 1, 0);
} }
}
else if((wibox = wibox_getbywin(ev->event))) if((wibox = wibox_getbywin(ev->event)))
{ {
if(wibox->mouse_over) if(wibox->mouse_over)
{ {