sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 0df04e27b6d865baa776c3492f08b5db8f59e6ed
parent acc2628c799170dea98380cda2237137137f182f
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Thu, 30 Aug 2018 21:26:21 +1000

Fix crash when focus hits edge of root

Diffstat:
Msway/commands/focus.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/sway/commands/focus.c b/sway/commands/focus.c @@ -255,6 +255,10 @@ struct cmd_results *cmd_focus(int argc, char **argv) { // A workspace is focused, so just jump to the next output struct sway_output *new_output = output_get_in_direction(workspace->output, direction); + if (!new_output) { + return cmd_results_new(CMD_SUCCESS, NULL, NULL); + } + struct sway_node *node = get_node_in_output_direction(new_output, direction); seat_set_focus(seat, node);