dwm.c
changeset 1338 04c5619da581
parent 1337 c4ecef7983b8
child 1339 fdf4b9511575
equal deleted inserted replaced
1337:c4ecef7983b8 1338:04c5619da581
  1467 	arrange();
  1467 	arrange();
  1468 }
  1468 }
  1469 
  1469 
  1470 void
  1470 void
  1471 toggletag(const Arg *arg) {
  1471 toggletag(const Arg *arg) {
  1472 	unsigned int mask = sel->tags ^ (arg->ui & TAGMASK);
  1472 	unsigned int mask;
  1473 
  1473 
       
  1474 	if (!sel)
       
  1475 		return;
       
  1476 	
       
  1477 	mask = sel->tags ^ (arg->ui & TAGMASK);
  1474 	if(sel && mask) {
  1478 	if(sel && mask) {
  1475 		sel->tags = mask;
  1479 		sel->tags = mask;
  1476 		arrange();
  1480 		arrange();
  1477 	}
  1481 	}
  1478 }
  1482 }