[fix] cycle auto layouts backwards

This commit is contained in:
wil 2016-12-31 18:41:13 +01:00
parent 4b1d9b058e
commit 15745abf0c
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ struct cmd_results *cmd_layout(int argc, char **argv) {
if (is_auto_layout(parent->layout) && parent->layout > L_AUTO_FIRST) {
layout = parent->layout - 1;
} else {
layout = L_AUTO_FIRST;
layout = L_AUTO_LAST;
}
} else {
return cmd_results_new(CMD_FAILURE, "layout auto",