diff options
Diffstat (limited to 'sway/desktop')
| -rw-r--r-- | sway/desktop/xdg_shell.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/sway/desktop/xdg_shell.c b/sway/desktop/xdg_shell.c index 843ff90a..d34654fd 100644 --- a/sway/desktop/xdg_shell.c +++ b/sway/desktop/xdg_shell.c @@ -358,7 +358,8 @@ static void handle_request_fullscreen(struct wl_listener *listener, void *data)  	if (e->fullscreen && e->output && e->output->data) {  		struct sway_output *output = e->output->data;  		struct sway_workspace *ws = output_get_active_workspace(output); -		if (ws && !container_is_scratchpad_hidden(container)) { +		if (ws && !container_is_scratchpad_hidden(container) && +				container->pending.workspace != ws) {  			if (container_is_floating(container)) {  				workspace_add_floating(ws, container);  			} else { | 
