diff options
| author | Ryan Dwyer <[email protected]> | 2018-04-18 13:06:10 +1000 | 
|---|---|---|
| committer | Ryan Dwyer <[email protected]> | 2018-04-18 13:06:10 +1000 | 
| commit | 8d06b222f048e5a27c4c5b0bc46ceaab7639502f (patch) | |
| tree | f75d4225aef33dadae0a8d60ab98cdef343ccb62 /sway/desktop | |
| parent | 35ccdd67a89280c1d906ed914d67918cfb382e1f (diff) | |
Fullscreen rendering and input fixes.
* Render background when using fullscreen, because transparency.
* Check that fullscreen surface allows input.
* Don't look for surfaces in top layer if there's a fullscreen view.
Diffstat (limited to 'sway/desktop')
| -rw-r--r-- | sway/desktop/output.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/sway/desktop/output.c b/sway/desktop/output.c index a5f2f71f..299b57f1 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -280,11 +280,11 @@ static void render_output(struct sway_output *output, struct timespec *when,  	struct sway_container *workspace = output_get_active_workspace(output); +	render_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND]); +  	if (workspace->sway_workspace->fullscreen) {  		render_container(output, workspace->sway_workspace->fullscreen->swayc);  	} else { -		render_layer(output, -				&output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND]);  		render_layer(output, &output->layers[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM]);  		render_container(output, workspace); | 
