diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-03-23 17:00:01 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-03-25 18:11:13 -0400 |
| commit | e02f788409393a701bbb26ebbb01a82f085f2e96 (patch) | |
| tree | b63195555c095932d2c78a51863e9f76db8b37cc /openbox/client.c | |
| parent | 15d7f7103edfa77ff055acbe181099db358b6982 (diff) | |
allow non-normal windows to go to 0,0. and remove a debugging g_print
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openbox/client.c b/openbox/client.c index e64fd49c..3e10a9ab 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -335,6 +335,8 @@ void client_manage(Window window, ObPrompt *prompt) /* watch for buggy apps that ask to be placed at (0,0) when there is a strut there */ if (!obplaced && place.x == 0 && place.y == 0 && + /* non-normal windows are allowed */ + client_normal(self) && /* oldschool fullscreen windows are allowed */ !client_is_oldfullscreen(self, &place)) { |
