From b76b9d2dfe0faad1d639217605666704b9af5a24 Mon Sep 17 00:00:00 2001 From: athrungithub Date: Wed, 23 Jan 2019 21:50:57 -0300 Subject: [PATCH] check if scratchpad is show in another workspace --- sway/commands/scratchpad.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sway/commands/scratchpad.c b/sway/commands/scratchpad.c index 714efa2b0..62267e922 100644 --- a/sway/commands/scratchpad.c +++ b/sway/commands/scratchpad.c @@ -72,8 +72,10 @@ static void scratchpad_toggle_container(struct sway_container *con) { return; } + struct sway_seat *seat = input_manager_current_seat(); + struct sway_workspace *ws = seat_get_focused_workspace(seat); // Check if it matches a currently visible scratchpad window and hide it. - if (con->workspace) { + if (con->workspace && (ws == con->workspace)) { root_scratchpad_hide(con); return; }