dwm.c
changeset 1172 593aa98cf961
parent 1169 22c669b2dd36
child 1173 fb1833284e4b
equal deleted inserted replaced
1171:00554b43b5e0 1172:593aa98cf961
  1066 void
  1066 void
  1067 monocle(void) {
  1067 monocle(void) {
  1068 	Client *c;
  1068 	Client *c;
  1069 
  1069 
  1070 	for(c = clients; c; c = c->next)
  1070 	for(c = clients; c; c = c->next)
  1071 		if(isvisible(c))
  1071 		if((lt->isfloating || !c->floating) &&  isvisible(c))
  1072 			resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS);
  1072 			resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS);
  1073 }
  1073 }
  1074 
  1074 
  1075 void
  1075 void
  1076 movemouse(Client *c) {
  1076 movemouse(Client *c) {