mirror of
https://github.com/swaywm/sway.git
synced 2024-11-04 23:43:14 +00:00
commands/move: fix crash when moving sphsc child
This commit is contained in:
parent
1be66c98f2
commit
d06c1ac1e9
|
@ -537,7 +537,8 @@ static struct cmd_results *cmd_move_container(bool no_auto_back_and_forth,
|
|||
struct sway_node *focus = seat_get_focus(seat);
|
||||
|
||||
// move container
|
||||
if (container->scratchpad) {
|
||||
if (container_is_scratchpad_hidden_or_child(container)) {
|
||||
container_detach(container);
|
||||
root_scratchpad_show(container);
|
||||
}
|
||||
switch (destination->type) {
|
||||
|
|
Loading…
Reference in a new issue