diff options
author | okan | 2008-05-18 20:06:36 +0000 |
---|---|---|
committer | okan | 2008-05-18 20:06:36 +0000 |
commit | ca95bca81231c8c082947924b2af0498d914ce96 (patch) | |
tree | 38c9b09abe5be24426fc95f6de5424697a0866a8 | |
parent | ded4ee413cda86bfa735b5b10100bc71fe23dd8b (diff) | |
download | cwm-ca95bca81231c8c082947924b2af0498d914ce96.tar.gz |
send the correct x/y coordinates to XConfigureWindow()
fixes some windows that seem as if they don't fit; noticed by Edd Barrett.
ok oga@
-rw-r--r-- | xevents.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: xevents.c,v 1.13 2008/05/15 22:18:00 oga Exp $ + * $Id: xevents.c,v 1.14 2008/05/18 20:06:36 okan Exp $ */ /* @@ -141,8 +141,8 @@ xev_handle_configurerequest(struct xevent *xev, XEvent *ee) xev_reconfig(cc); } - wc.x = cc != NULL ? 0 : e->x; - wc.y = cc != NULL ? 0 : e->y; + wc.x = cc != NULL ? cc->bwidth : e->x; + wc.y = cc != NULL ? cc->bwidth : e->y; wc.width = e->width; wc.height = e->height; wc.stack_mode = Above; |