sway

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

commit f0212d66eee61517ab1bb0f8bb68784d50e14c9a
parent ebb0d051db2f73fd13a4e844a51e70f09703372a
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Wed, 16 May 2018 20:47:03 +1000

Update marks textures on output scale event

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

diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -962,10 +962,15 @@ static void handle_transform(struct wl_listener *listener, void *data) { arrange_output(output->swayc); } +static void handle_scale_iterator(struct sway_container *view, void *data) { + view_update_marks_textures(view->sway_view); +} + static void handle_scale(struct wl_listener *listener, void *data) { struct sway_output *output = wl_container_of(listener, output, scale); arrange_layers(output); arrange_output(output->swayc); + container_descendants(output->swayc, C_VIEW, handle_scale_iterator, NULL); } void handle_new_output(struct wl_listener *listener, void *data) {