mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +00:00
Merge pull request #1952 from Dudemanguy911/fix-crash-on-fullscreen
fix crash on fullscreen toggle
This commit is contained in:
commit
7f03570caf
|
@ -188,8 +188,9 @@ void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen) {
|
||||||
struct sway_container *focus, *focus_ws;
|
struct sway_container *focus, *focus_ws;
|
||||||
wl_list_for_each(seat, &input_manager->seats, link) {
|
wl_list_for_each(seat, &input_manager->seats, link) {
|
||||||
focus = seat_get_focus(seat);
|
focus = seat_get_focus(seat);
|
||||||
|
if (focus) {
|
||||||
focus_ws = focus;
|
focus_ws = focus;
|
||||||
if (focus_ws->type != C_WORKSPACE) {
|
if (focus && focus_ws->type != C_WORKSPACE) {
|
||||||
focus_ws = container_parent(focus_ws, C_WORKSPACE);
|
focus_ws = container_parent(focus_ws, C_WORKSPACE);
|
||||||
}
|
}
|
||||||
seat_set_focus(seat, view->swayc);
|
seat_set_focus(seat, view->swayc);
|
||||||
|
@ -197,6 +198,7 @@ void view_set_fullscreen_raw(struct sway_view *view, bool fullscreen) {
|
||||||
seat_set_focus(seat, focus);
|
seat_set_focus(seat, focus);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
workspace->sway_workspace->fullscreen = NULL;
|
workspace->sway_workspace->fullscreen = NULL;
|
||||||
view->swayc->width = view->swayc->saved_width;
|
view->swayc->width = view->swayc->saved_width;
|
||||||
|
|
Loading…
Reference in a new issue