diff options
| author | Louis POIROT--HATTERMANN <lpoirothattermann@gmail.com> | 2025-10-02 15:54:24 +0200 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2025-10-05 19:22:48 +0200 |
| commit | ecfea6b8aebcc6a7f663e2f23144e146dbe726d3 (patch) | |
| tree | 9360b8ac748434dc9a3934942b87dac6039c8ca8 | |
| parent | b4a9a1716f70f080edf146f82698aa2c1bb99bcc (diff) | |
commands/scratchpad: don't hide scratchpad if no pending workspace
Fixes: https://github.com/swaywm/sway/issues/8909
| -rw-r--r-- | sway/tree/root.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sway/tree/root.c b/sway/tree/root.c index 33c29d38..cf7170a4 100644 --- a/sway/tree/root.c +++ b/sway/tree/root.c @@ -214,9 +214,7 @@ void root_scratchpad_hide(struct sway_container *con) { struct sway_node *focus = seat_get_focus_inactive(seat, &root->node); struct sway_workspace *ws = con->pending.workspace; - if (con->pending.fullscreen_mode == FULLSCREEN_GLOBAL && !con->pending.workspace) { - // If the container was made fullscreen global while in the scratchpad, - // it should be shown until fullscreen has been disabled + if (!con->pending.workspace) { return; } |
