arrange windows

This commit is contained in:
Tony Crisci 2018-03-29 23:15:39 -04:00
parent 92c58b1e63
commit 2778edef97
11 changed files with 24 additions and 24 deletions

View file

@ -50,7 +50,7 @@ struct cmd_results *cmd_layout(int argc, char **argv) {
}
}
container_arrange_windows(parent, parent->width, parent->height);
arrange_windows(parent, parent->width, parent->height);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}

View file

@ -13,6 +13,6 @@ struct cmd_results *cmd_reload(int argc, char **argv) {
/* load_swaybars(); -- for when it's implemented */
container_arrange_windows(&root_container, -1, -1);
arrange_windows(&root_container, -1, -1);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}