check if scratchpad is show in another workspace

This commit is contained in:
athrungithub 2019-01-23 21:50:57 -03:00
parent b76b9d2dfe
commit 7b6aca4711

View file

@ -75,7 +75,7 @@ static void scratchpad_toggle_container(struct sway_container *con) {
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 && (ws == con->workspace)) {
if (con->workspace && ws == con->workspace) {
root_scratchpad_hide(con);
return;
}