no \n in g_message
This commit is contained in:
parent
4a6e98cad8
commit
7bb829f8b7
1 changed files with 2 additions and 1 deletions
|
@ -938,7 +938,7 @@ void client_update_wmhints(Client *self)
|
|||
|
||||
if (ur != self->urgent) {
|
||||
self->urgent = ur;
|
||||
g_message("Urgent Hint for 0x%lx: %s\n", self->window,
|
||||
g_message("Urgent Hint for 0x%lx: %s", self->window,
|
||||
ur ? "ON" : "OFF");
|
||||
/* fire the urgent callback if we're mapped, otherwise, wait until
|
||||
after we're mapped */
|
||||
|
@ -1930,6 +1930,7 @@ gboolean client_focus(Client *self)
|
|||
void client_unfocus(Client *self)
|
||||
{
|
||||
g_assert(focus_client == self);
|
||||
focus_set_client(NULL);
|
||||
}
|
||||
|
||||
gboolean client_focused(Client *self)
|
||||
|
|
Loading…
Reference in a new issue