mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 23:43:14 +00:00
Fix segfault from focus_view
This commit is contained in:
parent
107f961752
commit
9835845e22
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue