sway

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

commit b49cfa0c16b442b048213296bc3f75c4e5393a6e
parent fed757ebb2188661b6e2e93ba2432cc67531b62e
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun,  9 Aug 2015 22:53:00 -0400

Fix bug with focus parent

Thanks anon

Diffstat:
Msway/commands.c | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -113,9 +113,11 @@ int cmd_focus(struct sway_config *config, int argc, char **argv) { move_focus(MOVE_DOWN); } else if (strcasecmp(argv[0], "parent") == 0) { swayc_t *current = get_focused_container(&root_container); - current->parent->focused = NULL; - unfocus_all(current->parent); - focus_view(current->parent); + if (current && current->parent) { + current->parent->focused = NULL; + unfocus_all(current->parent); + focus_view(current->parent); + } } return 0; }