applied Jack's mplayer fullscreen patch
This commit is contained in:
parent
79b1657a19
commit
c14d293e51
6
dwm.c
6
dwm.c
@ -88,7 +88,7 @@ struct Client {
|
|||||||
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
int basew, baseh, incw, inch, maxw, maxh, minw, minh;
|
||||||
int bw, oldbw;
|
int bw, oldbw;
|
||||||
unsigned int tags;
|
unsigned int tags;
|
||||||
Bool isfixed, isfloating, isurgent, neverfocus, oldstate;
|
Bool isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
|
||||||
Client *next;
|
Client *next;
|
||||||
Client *snext;
|
Client *snext;
|
||||||
Monitor *mon;
|
Monitor *mon;
|
||||||
@ -532,6 +532,7 @@ clientmessage(XEvent *e) {
|
|||||||
if(cme->data.l[0]) {
|
if(cme->data.l[0]) {
|
||||||
XChangeProperty(dpy, cme->window, netatom[NetWMState], XA_ATOM, 32,
|
XChangeProperty(dpy, cme->window, netatom[NetWMState], XA_ATOM, 32,
|
||||||
PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1);
|
PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1);
|
||||||
|
c->isfullscreen = True;
|
||||||
c->oldstate = c->isfloating;
|
c->oldstate = c->isfloating;
|
||||||
c->oldbw = c->bw;
|
c->oldbw = c->bw;
|
||||||
c->bw = 0;
|
c->bw = 0;
|
||||||
@ -542,6 +543,7 @@ clientmessage(XEvent *e) {
|
|||||||
else {
|
else {
|
||||||
XChangeProperty(dpy, cme->window, netatom[NetWMState], XA_ATOM, 32,
|
XChangeProperty(dpy, cme->window, netatom[NetWMState], XA_ATOM, 32,
|
||||||
PropModeReplace, (unsigned char*)0, 0);
|
PropModeReplace, (unsigned char*)0, 0);
|
||||||
|
c->isfullscreen = False;
|
||||||
c->isfloating = c->oldstate;
|
c->isfloating = c->oldstate;
|
||||||
c->bw = c->oldbw;
|
c->bw = c->oldbw;
|
||||||
c->x = c->oldx;
|
c->x = c->oldx;
|
||||||
@ -1584,7 +1586,7 @@ showhide(Client *c) {
|
|||||||
return;
|
return;
|
||||||
if(ISVISIBLE(c)) { /* show clients top down */
|
if(ISVISIBLE(c)) { /* show clients top down */
|
||||||
XMoveWindow(dpy, c->win, c->x, c->y);
|
XMoveWindow(dpy, c->win, c->x, c->y);
|
||||||
if(!c->mon->lt[c->mon->sellt]->arrange || c->isfloating)
|
if((!c->mon->lt[c->mon->sellt]->arrange || c->isfloating) && !c->isfullscreen)
|
||||||
resize(c, c->x, c->y, c->w, c->h, False);
|
resize(c, c->x, c->y, c->w, c->h, False);
|
||||||
showhide(c->snext);
|
showhide(c->snext);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user