Skip to content

Commit

Permalink
Layout/Client: Fix max layout (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
xorg62 committed May 14, 2011
1 parent dc836cc commit 7eb15d5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/client.c
Expand Up @@ -1097,10 +1097,7 @@ client_maximize(Client *c)
c->geo.width = sgeo[c->screen].width - BORDH * 2;
c->geo.height = sgeo[c->screen].height - BORDH;

client_moveresize(c, c->geo, False);

/* Raise for maximized clients, client_raise has too much condition */
XRaiseWindow(dpy, c->frame);
client_moveresize(c, c->geo, tags[c->screen][c->tag].resizehint);

This comment has been minimized.

Copy link
@sironitomas

sironitomas May 26, 2011

So, is that line of code supposed to solve the problem?


return;
}
Expand Down

0 comments on commit 7eb15d5

Please sign in to comment.