diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-26 22:28:27 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-26 22:28:27 +0000 |
| commit | a4f868a195ce5b22d7965725b4c2f774f002cd98 (patch) | |
| tree | 9db3ecb25feb3b9b83591834ca74a6b7983fe249 | |
| parent | ca8924a5a004816cf7db39bcf4851312ef93a2dc (diff) | |
send the client's border width in configurenotify messages, so it can get the right offset
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client.c b/openbox/client.c index bf772336..9c679fee 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2931,7 +2931,7 @@ void client_configure(ObClient *self, gint x, gint y, gint w, gint h, event.xconfigure.y = self->root_pos.y; event.xconfigure.width = w; event.xconfigure.height = h; - event.xconfigure.border_width = 0; + event.xconfigure.border_width = self->border_width; event.xconfigure.above = self->frame->plate; event.xconfigure.override_redirect = FALSE; XSendEvent(event.xconfigure.display, event.xconfigure.window, |
