fix crash with “layout default”: ipc.c won’t dump L_DEFAULT layout (#4409)

fixes #4408
This commit is contained in:
Michael Stapelberg 2021-04-20 09:04:07 +02:00 committed by GitHub
parent c8158875b4
commit 9db03797da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 2 deletions

View File

@ -1855,9 +1855,9 @@ void con_set_layout(Con *con, layout_t layout) {
con_attach(new, con, false);
tree_flatten(croot);
con_force_split_parents_redraw(con);
return;
}
con_force_split_parents_redraw(con);
return;
}
if (layout == L_DEFAULT) {

View File

@ -0,0 +1,25 @@
#!perl
# vim:ts=4:sw=4:expandtab
#
# Please read the following documents before working on tests:
# • https://build.i3wm.org/docs/testsuite.html
# (or docs/testsuite)
#
# • https://build.i3wm.org/docs/lib-i3test.html
# (alternatively: perldoc ./testcases/lib/i3test.pm)
#
# • https://build.i3wm.org/docs/ipc.html
# (or docs/ipc)
#
# • http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf
# (unless you are already familiar with Perl)
#
# Verifies i3 does not crash when using layout default.
# Ticket: #4408
# Bug still in: 4.19.2-83-gc8158875
use i3test;
cmd 'layout default';
fresh_workspace;
done_testing;