From 7a50d03d3b158fbb9be909f6ed371a24569fbd00 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Tue, 15 Oct 2024 16:43:57 +0200 Subject: [PATCH] WIP silence error that happens a lot after modeset --- sway/desktop/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sway/desktop/output.c b/sway/desktop/output.c index c8fa17b64..5996a6bd0 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -296,7 +296,7 @@ static int output_repaint_timer_handler(void *data) { } if (!wlr_output_commit_state(output->wlr_output, &pending)) { - sway_log(SWAY_ERROR, "Page-flip failed on output %s", output->wlr_output->name); + // sway_log(SWAY_ERROR, "Page-flip failed on output %s", output->wlr_output->name); } wlr_output_state_finish(&pending); return 0;