From: Michael Stapelberg Date: Thu, 3 Mar 2011 13:30:13 +0000 (+0100) Subject: Bugfix: 'level up' needs to stop at the workspace con + testcase (Thanks mseed) X-Git-Tag: tree-pr2~20 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a038d2674bed411e7e1867c1a4957d8b9734f3a6;p=i3%2Fi3 Bugfix: 'level up' needs to stop at the workspace con + testcase (Thanks mseed) --- diff --git a/src/tree.c b/src/tree.c index 31177109..3c209fbc 100644 --- a/src/tree.c +++ b/src/tree.c @@ -268,8 +268,9 @@ void tree_split(Con *con, orientation_t orientation) { */ void level_up() { /* We can focus up to the workspace, but not any higher in the tree */ - if (focused->parent->type != CT_CON && - focused->parent->type != CT_WORKSPACE) { + if ((focused->parent->type != CT_CON && + focused->parent->type != CT_WORKSPACE) || + focused->type == CT_WORKSPACE) { printf("cannot go up\n"); return; } diff --git a/testcases/t/52-regress-level-up.t b/testcases/t/52-regress-level-up.t new file mode 100644 index 00000000..19b0f85d --- /dev/null +++ b/testcases/t/52-regress-level-up.t @@ -0,0 +1,21 @@ +#!perl +# vim:ts=4:sw=4:expandtab +# +# Regression test for using level-up to get to the 'content'-container and +# toggle floating +# +use Time::HiRes qw(sleep); +use i3test; + +my $tmp = get_unused_workspace; +cmd "workspace $tmp"; + + +cmd 'open'; +cmd 'level up'; +cmd 'level up'; +cmd 'mode toggle'; + +does_i3_live; + +done_testing;