diff options
author | okan | 2009-01-22 19:01:56 +0000 |
---|---|---|
committer | okan | 2009-01-22 19:01:56 +0000 |
commit | 4b2cd3a9e6fb79dc8497bc499aea252775e9029c (patch) | |
tree | d1b2fec118d52796b1a8162630a3ad8f06b551ec /xevents.c | |
parent | 9f7c5b89793258b4c7126f036eb1493b0bb9d3fc (diff) | |
download | cwm-4b2cd3a9e6fb79dc8497bc499aea252775e9029c.tar.gz |
now that pwin is gone gone gone, we no longer have to do the bwidth
dance; xevents now able to deal with a border being set (which fixes
those annoying movie-watching apps).
ok todd@, oga@
Diffstat (limited to 'xevents.c')
-rw-r--r-- | xevents.c | 19 |
1 files changed, 10 insertions, 9 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.36 2009/01/17 20:39:24 okan Exp $ + * $Id: xevents.c,v 1.37 2009/01/22 19:01:56 okan Exp $ */ /* @@ -111,19 +111,19 @@ xev_handle_configurerequest(struct xevent *xev, XEvent *ee) cc->geom.x = e->x; if (e->value_mask & CWY) cc->geom.y = e->y; + if (e->value_mask & CWBorderWidth) + wc.border_width = e->border_width; - if (cc->geom.x == 0 && - cc->geom.width >= DisplayWidth(X_Dpy, sc->which)) + if (cc->geom.x == 0 && cc->geom.width >= sc->xmax) cc->geom.x -= cc->bwidth; - if (cc->geom.y == 0 && - cc->geom.height >= DisplayHeight(X_Dpy, sc->which)) + if (cc->geom.y == 0 && cc->geom.height >= sc->ymax) cc->geom.y -= cc->bwidth; - wc.x = cc->geom.x - cc->bwidth; - wc.y = cc->geom.y - cc->bwidth; - wc.width = cc->geom.width + cc->bwidth*2; - wc.height = cc->geom.height + cc->bwidth*2; + wc.x = cc->geom.x; + wc.y = cc->geom.y; + wc.width = cc->geom.width; + wc.height = cc->geom.height; wc.border_width = cc->bwidth; XConfigureWindow(X_Dpy, cc->win, e->value_mask, &wc); @@ -134,6 +134,7 @@ xev_handle_configurerequest(struct xevent *xev, XEvent *ee) wc.y = e->y; wc.width = e->width; wc.height = e->height; + wc.border_width = e->border_width; wc.stack_mode = Above; e->value_mask &= ~CWStackMode; |