dont send menu events to plugins

This commit is contained in:
Dana Jansens 2003-04-16 19:41:22 +00:00
parent 8955a2b70f
commit cb71c993e5

View file

@ -327,9 +327,10 @@ static void event_process(XEvent *e)
return; return;
/* deal with it in the kernel */ /* deal with it in the kernel */
if (menu) if (menu) {
event_handle_menu(menu, e); event_handle_menu(menu, e);
else if (client) return;
} else if (client)
event_handle_client(client, e); event_handle_client(client, e);
else if (window == ob_root) else if (window == ob_root)
event_handle_root(e); event_handle_root(e);