all repos — openbox @ 5c53055ee7e7efc4bc5fae2a7ba6206fa61eac5b

openbox fork - make it a bit more like ryudo

simply out the events we dont need no more
Dana Jansens danakj@orodu.net
commit

5c53055ee7e7efc4bc5fae2a7ba6206fa61eac5b

parent

49a70012642a6d18529dc2efedc6e9c604c0a0b2

1 files changed, 1 insertions(+), 8 deletions(-)

jump to
M plugins/focus.cplugins/focus.c

@@ -43,7 +43,6 @@ client_focus(e->data.c.client);

break; case Event_Ob_Desktop: - g_message("Desktop Switch"); /* focus the next available target */ focus_fallback(e->data.o.num[0], TRUE); break;

@@ -56,14 +55,9 @@ if (focus_client == NULL)

/\* focus the next available target *\/ focus_fallback(screen_desktop, FALSE); */ - break; - - case Event_X_LeaveNotify: - g_message("Leave: %lx", e->data.x.client ? e->data.x.client->window : 0); break; case Event_X_EnterNotify: - g_message("Enter: %lx", e->data.x.client ? e->data.x.client->window : 0); if (skip_enter) --skip_enter; else if (e->data.x.client && client_normal(e->data.x.client))

@@ -80,8 +74,7 @@ {

dispatch_register(Event_Client_Mapped | Event_Ob_Desktop | Event_Client_Unfocus | - Event_X_EnterNotify | - Event_X_LeaveNotify, + Event_X_EnterNotify, (EventHandler)events, NULL); }