summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/layout.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sway/layout.c b/sway/layout.c
index 1bc65050..f4079d4b 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -285,6 +285,9 @@ void unfocus_all(swayc_t *container) {
285} 285}
286 286
287void focus_view(swayc_t *view) { 287void focus_view(swayc_t *view) {
288 if (!view) {
289 return;
290 }
288 sway_log(L_DEBUG, "Setting focus for %p:%ld", view, view->handle); 291 sway_log(L_DEBUG, "Setting focus for %p:%ld", view, view->handle);
289 swayc_t *c = view; 292 swayc_t *c = view;
290 //Set focus from root to view 293 //Set focus from root to view