dwm.c
changeset 1386 a98f0e8ea6cb
parent 1385 85a8eff4c123
child 1387 dbcd0ffca535
equal deleted inserted replaced
1385:85a8eff4c123 1386:a98f0e8ea6cb
  1461 
  1461 
  1462 	if (!sel)
  1462 	if (!sel)
  1463 		return;
  1463 		return;
  1464 	
  1464 	
  1465 	mask = sel->tags ^ (arg->ui & TAGMASK);
  1465 	mask = sel->tags ^ (arg->ui & TAGMASK);
  1466 	if(sel && mask) {
  1466 	if(mask) {
  1467 		sel->tags = mask;
  1467 		sel->tags = mask;
  1468 		arrange();
  1468 		arrange();
  1469 	}
  1469 	}
  1470 }
  1470 }
  1471 
  1471