diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-27 21:30:16 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-27 21:30:16 +0000 |
| commit | c189771cef3e62995b9c528c65f794f0683e6688 (patch) | |
| tree | 289a9361fb86c8ec8d77643caec45e377232ddca /openbox | |
| parent | 20cb425fd31b86febacbc3e80fba94e88f0ef016 (diff) | |
when an app doesn't specify PPosition or USPosition, then assume its PPosition
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/client.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c index aa0d8faf..275742b3 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -427,8 +427,7 @@ void client_manage(Window window) it is up to the placement routines to avoid the xinerama divides) */ transient || - (((self->positioned & PPosition) && - !(self->positioned & USPosition)) && + (!(self->positioned & USPosition) && client_normal(self) && !self->session)); } |
