Fix segfault from focus_view

This commit is contained in:
Drew DeVault 2015-08-17 14:18:57 -04:00
parent 107f961752
commit 9835845e22
1 changed files with 3 additions and 0 deletions

View File

@ -285,6 +285,9 @@ void unfocus_all(swayc_t *container) {
}
void focus_view(swayc_t *view) {
if (!view) {
return;
}
sway_log(L_DEBUG, "Setting focus for %p:%ld", view, view->handle);
swayc_t *c = view;
//Set focus from root to view