From: Dana Jansens Date: Wed, 9 Dec 2009 18:22:37 +0000 (-0500) Subject: Add a focus debug message for the frame's visible focus state X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fopenbox;a=commitdiff_plain;h=5b20b3fc7fbfc76ce36f33e98c8a0467fa204ec5 Add a focus debug message for the frame's visible focus state --- diff --git a/openbox/frame.c b/openbox/frame.c index df53f3c2..20697d32 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -23,6 +23,7 @@ #include "extensions.h" #include "prop.h" #include "grab.h" +#include "debug.h" #include "config.h" #include "framerender.h" #include "mainloop.h" @@ -948,6 +949,9 @@ void frame_adjust_state(ObFrame *self) void frame_adjust_focus(ObFrame *self, gboolean hilite) { + ob_debug_type(OB_DEBUG_FOCUS, + "Frame for 0x%x has focus: %d\n", + self->client->window, hilite); self->focused = hilite; self->need_render = TRUE; framerender_frame(self);