mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 16:01:27 +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")) {
|
||||
return;
|
||||
}
|
||||
con->scratchpad = true;
|
||||
list_add(root->scratchpad, con);
|
||||
|
||||
struct sway_container *parent = con->parent;
|
||||
struct sway_workspace *workspace = con->workspace;
|
||||
container_set_floating(con, true);
|
||||
container_detach(con);
|
||||
con->scratchpad = true;
|
||||
list_add(root->scratchpad, con);
|
||||
|
||||
struct sway_seat *seat = input_manager_current_seat();
|
||||
if (parent) {
|
||||
|
|
Loading…
Reference in a new issue