diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-10-08 11:26:45 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-10-08 11:26:45 -0400 |
commit | 6271abd644da15070d29d2d06bc527f89a799375 (patch) | |
tree | a6b07648871ac884e5770f070224907973c5ac43 /sway/commands | |
parent | eb7b920303f0589fd5220a3d025b9c678d7c7a16 (diff) |
Fix #1291
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/scratchpad.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/sway/commands/scratchpad.c b/sway/commands/scratchpad.c index dec32f51..6c5c92df 100644 --- a/sway/commands/scratchpad.c +++ b/sway/commands/scratchpad.c @@ -7,10 +7,8 @@ #include "sway/layout.h" static swayc_t *fetch_view_from_scratchpad() { - if (sp_index >= scratchpad->length) { - sp_index = 0; - } - swayc_t *view = scratchpad->items[sp_index++]; + sp_index = (sp_index + 1) % scratchpad->length; + swayc_t *view = scratchpad->items[sp_index]; if (wlc_view_get_output(view->handle) != swayc_active_output()->handle) { wlc_view_set_output(view->handle, swayc_active_output()->handle); @@ -46,6 +44,14 @@ struct cmd_results *cmd_scratchpad(int argc, char **argv) { if (strcasecmp(argv[0], "show") == 0 && scratchpad->length > 0) { if (!sp_view) { + if (current_container) { + // Haxor the scratchpad index if criteria'd + for (int i = 0; i < scratchpad->length; ++i) { + if (scratchpad->items[i] == current_container) { + sp_index = (i - 1) % scratchpad->length; + } + } + } sp_view = fetch_view_from_scratchpad(); } else { if (swayc_active_workspace() != sp_view->parent) { |