fix a debug print
This commit is contained in:
parent
fd2fe67592
commit
e9ccc6a82e
1 changed files with 3 additions and 1 deletions
|
@ -377,7 +377,9 @@ void client_manage(Window window)
|
|||
(!self->positioned ? "no" :
|
||||
(self->positioned == PPosition ? "program specified" :
|
||||
(self->positioned == USPosition ? "user specified" :
|
||||
"BADNESS !?"))), self->area.x, self->area.y);
|
||||
(self->positioned == PPosition | USPosition ?
|
||||
"program + user specified" :
|
||||
"BADNESS !?")))), self->area.x, self->area.y);
|
||||
|
||||
transient = place_client(self, &placex, &placey, settings);
|
||||
|
||||
|
|
Loading…
Reference in a new issue