From: Michael Stapelberg Date: Sat, 7 Jan 2012 17:36:30 +0000 (+0000) Subject: Bugfix: Correctly handle 'move scratchpad' on workspace level (+test) (Thanks mseed) X-Git-Tag: 4.2~154 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0e1b1dd984bbf96907fc97acdf84b84897a94be0;p=i3%2Fi3 Bugfix: Correctly handle 'move scratchpad' on workspace level (+test) (Thanks mseed) Fixes: #597 --- diff --git a/src/scratchpad.c b/src/scratchpad.c index 9fceb2d7..b00d7f61 100644 --- a/src/scratchpad.c +++ b/src/scratchpad.c @@ -17,6 +17,18 @@ * */ void scratchpad_move(Con *con) { + if (con->type == CT_WORKSPACE) { + LOG("'move scratchpad' used on a workspace \"%s\". Calling it " + "recursively on all windows on this workspace.\n", con->name); + Con *current; + current = TAILQ_FIRST(&(con->focus_head)); + while (current) { + Con *next = TAILQ_NEXT(current, focused); + scratchpad_move(current); + current = next; + } + return; + } DLOG("should move con %p to __i3_scratch\n", con); Con *__i3_scratch = workspace_get("__i3_scratch", NULL); diff --git a/testcases/t/185-scratchpad.t b/testcases/t/185-scratchpad.t index 072e02d5..54759034 100644 --- a/testcases/t/185-scratchpad.t +++ b/testcases/t/185-scratchpad.t @@ -297,6 +297,54 @@ is(scalar @{$ws->{nodes}}, 1, 'still precisely one window on current ws'); is(scalar @{$ws->{floating_nodes}}, 1, 'precisely one floating windows on current ws'); is($ws->{floating_nodes}->[0]->{scratchpad_state}, 'changed', 'scratchpad_state is "changed"'); +################################################################################ +# 10: on an empty workspace, ensure the 'move scratchpad' command does nothing +################################################################################ + +$tmp = fresh_workspace; + +cmd 'move scratchpad'; + +does_i3_live; + +################################################################################ +# 11: focus a workspace and move all of its children to the scratchpad area +################################################################################ + +$tmp = fresh_workspace; + +my $first = open_window; +my $second = open_window; + +cmd 'focus parent'; +cmd 'move scratchpad'; + +does_i3_live; + +$ws = get_ws($tmp); +is(scalar @{$ws->{nodes}}, 0, 'no windows on ws'); +is(scalar @{$ws->{floating_nodes}}, 0, 'no floating windows on ws'); + +# show the first window. +cmd 'scratchpad show'; + +$ws = get_ws($tmp); +is(scalar @{$ws->{nodes}}, 0, 'no windows on ws'); +is(scalar @{$ws->{floating_nodes}}, 1, 'one floating windows on ws'); + +$old_focus = get_focused($tmp); + +cmd 'scratchpad show'; + +# show the second window. +cmd 'scratchpad show'; + +$ws = get_ws($tmp); +is(scalar @{$ws->{nodes}}, 0, 'no windows on ws'); +is(scalar @{$ws->{floating_nodes}}, 1, 'one floating windows on ws'); + +isnt(get_focused($tmp), $old_focus, 'focus changed'); + # TODO: make i3bar display *something* when a window on the scratchpad has the urgency hint done_testing;