aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <ddevault@linode.com>2015-08-17 14:18:57 -0400
committerLibravatar Drew DeVault <ddevault@linode.com>2015-08-17 14:18:57 -0400
commit9835845e220ea2236a90d939ad901247fcd74bc4 (patch)
tree0b195da9cfa78f2398885b2f41bdb03d358dcde3
parentMerge pull request #55 from taiyu-len/master (diff)
downloadsway-9835845e220ea2236a90d939ad901247fcd74bc4.tar.gz
sway-9835845e220ea2236a90d939ad901247fcd74bc4.tar.zst
sway-9835845e220ea2236a90d939ad901247fcd74bc4.zip
Fix segfault from focus_view
-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