rio: more full-screen fixes.
This commit is contained in:
parent
35288690ce
commit
e601e525de
3 changed files with 9 additions and 6 deletions
|
|
@ -138,8 +138,14 @@ configurereq(XConfigureRequestEvent *e)
|
|||
if(e->value_mask & CWBorderWidth)
|
||||
c->border = e->border_width;
|
||||
|
||||
if((e->value_mask & (CWX|CWY|CWWidth|CWHeight)) == (CWWidth|CWHeight)
|
||||
&& c->dx >= c->screen->width && c->dy >= c->screen->height){
|
||||
if(!(e->value_mask & (CWX|CWY))){
|
||||
e->x = 0;
|
||||
e->y = 0;
|
||||
}
|
||||
|
||||
if((e->value_mask & (CWWidth|CWHeight)) == (CWWidth|CWHeight)
|
||||
&& c->dx >= c->screen->width && c->dy >= c->screen->height
|
||||
&& e->x == 0 && e->y == 0){
|
||||
c->border = 0;
|
||||
e->value_mask |= CWX|CWY;
|
||||
}else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue