mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
Fix crash exiting fullscreened floating container
container_floating_move_to_center and container_fullscreen_disable were calling recursively when the container spawned as a fullscreen floating container (via for_window). Such a window now doesn't crash sway anymore but is still configured with a wrong, zero size, making it not directly usable.
This commit is contained in:
parent
f84ac3f114
commit
713883f04c
@ -847,16 +847,9 @@ void container_floating_move_to_center(struct sway_container *con) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
struct sway_workspace *ws = con->workspace;
|
struct sway_workspace *ws = con->workspace;
|
||||||
enum sway_fullscreen_mode fullscreen_mode = con->fullscreen_mode;
|
|
||||||
if (fullscreen_mode) {
|
|
||||||
container_fullscreen_disable(con);
|
|
||||||
}
|
|
||||||
double new_lx = ws->x + (ws->width - con->width) / 2;
|
double new_lx = ws->x + (ws->width - con->width) / 2;
|
||||||
double new_ly = ws->y + (ws->height - con->height) / 2;
|
double new_ly = ws->y + (ws->height - con->height) / 2;
|
||||||
container_floating_translate(con, new_lx - con->x, new_ly - con->y);
|
container_floating_translate(con, new_lx - con->x, new_ly - con->y);
|
||||||
if (fullscreen_mode) {
|
|
||||||
container_set_fullscreen(con, fullscreen_mode);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool find_urgent_iterator(struct sway_container *con, void *data) {
|
static bool find_urgent_iterator(struct sway_container *con, void *data) {
|
||||||
|
Loading…
Reference in New Issue
Block a user