mirror of
https://github.com/swaywm/sway.git
synced 2024-11-05 16:03:11 +00:00
[fix] cycle auto layouts backwards
This commit is contained in:
parent
4b1d9b058e
commit
15745abf0c
|
@ -110,7 +110,7 @@ struct cmd_results *cmd_layout(int argc, char **argv) {
|
||||||
if (is_auto_layout(parent->layout) && parent->layout > L_AUTO_FIRST) {
|
if (is_auto_layout(parent->layout) && parent->layout > L_AUTO_FIRST) {
|
||||||
layout = parent->layout - 1;
|
layout = parent->layout - 1;
|
||||||
} else {
|
} else {
|
||||||
layout = L_AUTO_FIRST;
|
layout = L_AUTO_LAST;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return cmd_results_new(CMD_FAILURE, "layout auto",
|
return cmd_results_new(CMD_FAILURE, "layout auto",
|
||||||
|
|
Loading…
Reference in a new issue