sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 6afccd07d95582a72e36b49454266ab0cebec7c0
parent 76837b91325c4bbb2fd631a30a26f125493ca631
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Fri, 20 Apr 2018 08:12:03 +1000

Add TODO about rendering fullscreen views smaller than the output

Diffstat:
Msway/desktop/output.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -280,6 +280,7 @@ static void render_output(struct sway_output *output, struct timespec *when, if (workspace->sway_workspace->fullscreen) { float clear_color[] = {0.0f, 0.0f, 0.0f, 1.0f}; wlr_renderer_clear(renderer, clear_color); + // TODO: handle views smaller than the output render_container(output, workspace->sway_workspace->fullscreen->swayc); } else { float clear_color[] = {0.25f, 0.25f, 0.25f, 1.0f};