mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 09:51:29 +00:00
Merge pull request #2970 from RyanDwyer/fix-scratchpad-size
Fix containers not being resized when entering scratchpad
This commit is contained in:
commit
df64cb2827
|
@ -59,13 +59,13 @@ void root_scratchpad_add_container(struct sway_container *con) {
|
||||||
if (!sway_assert(!con->scratchpad, "Container is already in scratchpad")) {
|
if (!sway_assert(!con->scratchpad, "Container is already in scratchpad")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
con->scratchpad = true;
|
|
||||||
list_add(root->scratchpad, con);
|
|
||||||
|
|
||||||
struct sway_container *parent = con->parent;
|
struct sway_container *parent = con->parent;
|
||||||
struct sway_workspace *workspace = con->workspace;
|
struct sway_workspace *workspace = con->workspace;
|
||||||
container_set_floating(con, true);
|
container_set_floating(con, true);
|
||||||
container_detach(con);
|
container_detach(con);
|
||||||
|
con->scratchpad = true;
|
||||||
|
list_add(root->scratchpad, con);
|
||||||
|
|
||||||
struct sway_seat *seat = input_manager_current_seat();
|
struct sway_seat *seat = input_manager_current_seat();
|
||||||
if (parent) {
|
if (parent) {
|
||||||
|
|
Loading…
Reference in a new issue