From 647d5a49d27fcce41db06ddb847b9c9a8937caee Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Wed, 30 Apr 2025 23:40:48 +0100 Subject: [PATCH] GTK: correct a comment calling Cairo surface "client-side" Our Cairo backing surface can be server-side now. Indeed I think it always is under GTK 2 where that comment applies. --- unix/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unix/window.c b/unix/window.c index a37b55de..f2ce224a 100644 --- a/unix/window.c +++ b/unix/window.c @@ -979,7 +979,7 @@ gint expose_area(GtkWidget *widget, GdkEventExpose *event, gpointer data) } #else /* - * Failing that, draw from the client-side Cairo surface. (We + * Failing that, draw from the backing Cairo surface. (We * should never be compiled in a context where we have _neither_ * inst->surface nor inst->pixmap.) */