Split: Illustrate split_move func

This commit is contained in:
Martin Duquesnoy 2011-06-05 14:09:29 +02:00
parent 58b6d9bccb
commit 0774936a6f

View File

@ -334,7 +334,14 @@ split_client_integrate(Client *c, Client *sc, int screen, int tag)
}
/** Move splitted client by re-arranging it in next by direction client
*/
* Integrate c in next client by direction
* Example case, direction = left:
* ___________ ___________
* | | B | -> | A | |
* | A |_____| -> |_____| B |
* | |< C | -> | C |v v v|
* |_____|_____| -> |_____|_____|
*/
void
split_move_dir(Client *c, Position p)
{