aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2021-10-15 19:34:03 +0200
committerLibravatar Simon Ser <contact@emersion.fr>2021-10-15 19:34:03 +0200
commit0c210a5e68ea611b7520da6a2bf9c290a1faf571 (patch)
treeb6ecb4927a10dadd3c5fd884bc3d9fbed098bb9c
parentcross-reference further documentation (diff)
downloadsway-0c210a5e68ea611b7520da6a2bf9c290a1faf571.tar.gz
sway-0c210a5e68ea611b7520da6a2bf9c290a1faf571.tar.zst
sway-0c210a5e68ea611b7520da6a2bf9c290a1faf571.zip
Handle present events with NULL timespec field
See [1]. [1]: https://github.com/swaywm/wlroots/pull/3245
-rw-r--r--sway/desktop/output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 8cdd47f5..edec71ad 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -827,7 +827,7 @@ static void handle_present(struct wl_listener *listener, void *data) {
827 struct sway_output *output = wl_container_of(listener, output, present); 827 struct sway_output *output = wl_container_of(listener, output, present);
828 struct wlr_output_event_present *output_event = data; 828 struct wlr_output_event_present *output_event = data;
829 829
830 if (!output->enabled) { 830 if (!output->enabled || !output_event->presented) {
831 return; 831 return;
832 } 832 }
833 833