all repos — openbox @ a3012eafbdb8468a8e61e685a47587da0a48868e

openbox fork - make it a bit more like ryudo

rm debug prints
Dana Jansens danakj@orodu.net
commit

a3012eafbdb8468a8e61e685a47587da0a48868e

parent

b23c65362d66d229073817d6d66d26b3ccef6a62

2 files changed, 1 insertions(+), 7 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -1901,8 +1901,6 @@

if (client_focused(self)) return TRUE; - g_print("Focusing: %lx\n", self->window); - if (self->can_focus) XSetInputFocus(ob_display, self->window, RevertToNone, CurrentTime);

@@ -1928,7 +1926,6 @@

void client_unfocus(Client *self) { g_assert(focus_client == self); - g_print("UNFocusing: %lx\n", self->window); focus_set_client(NULL); }
M plugins/focus.cplugins/focus.c

@@ -76,7 +76,6 @@ }

static void events(ObEvent *e, void *foo) { - g_message("event %d", e->type); switch (e->type) { case Event_Client_Mapped: if (focus_new && client_normal(e->data.c.client))

@@ -111,10 +110,8 @@ g_message("skipped enter 'root'");

--skip_enter; } else*/ - if (e->data.x.client != NULL && client_normal(e->data.x.client)) { + if (e->data.x.client != NULL && client_normal(e->data.x.client)) client_focus(e->data.x.client); - g_message("enter %lx", e->data.x.client->window); - } break; default: