From c998462c9fc2ca9875637d78eb605929a96639e7 Mon Sep 17 00:00:00 2001 From: Jason Tackaberry Date: Thu, 22 Jan 2009 13:38:32 +0000 Subject: [PATCH] Bug 1409 - Use G_SIGNAL_RUN_LAST with ::queue-redraw signal The intention behind ::queue-redraw is to be able to block the default handler by attaching a callback and calling one of the g_signal_stop_emission variants. However this doesn't work, because ::queue-redraw has the G_SIGNAL_RUN_FIRST flag instead of G_SIGNAL_RUN_LAST. --- clutter/clutter-stage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter-stage.c b/clutter/clutter-stage.c index e72a10d49..0d5834730 100644 --- a/clutter/clutter-stage.c +++ b/clutter/clutter-stage.c @@ -769,7 +769,7 @@ clutter_stage_class_init (ClutterStageClass *klass) stage_signals[QUEUE_REDRAW] = g_signal_new (I_("queue-redraw"), G_TYPE_FROM_CLASS (gobject_class), - G_SIGNAL_RUN_FIRST, + G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (ClutterStageClass, queue_redraw), NULL, NULL, clutter_marshal_VOID__VOID,