-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gnome.mutter43: Apply fixes for GLib 2.76
This is a downstream patch because the code path is gone in mutter 44. We should give mutter 44 some try once gala supports it. Fixes elementary/gala#1580
- Loading branch information
1 parent
4601539
commit a0ab388
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
pkgs/desktops/gnome/core/mutter/43/glib-2-76-gala-crash.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/clutter/clutter/clutter-actor.c b/clutter/clutter/clutter-actor.c | ||
index d34c8f59f..8835a6a33 100644 | ||
--- a/clutter/clutter/clutter-actor.c | ||
+++ b/clutter/clutter/clutter-actor.c | ||
@@ -12304,7 +12304,7 @@ clutter_actor_run_actions (ClutterActor *self, | ||
ClutterEventPhase phase) | ||
{ | ||
ClutterActorPrivate *priv; | ||
- const GList *actions, *l; | ||
+ const GList *actions, *l, *next; | ||
gboolean retval = CLUTTER_EVENT_PROPAGATE; | ||
|
||
priv = self->priv; | ||
@@ -12313,9 +12313,10 @@ clutter_actor_run_actions (ClutterActor *self, | ||
|
||
actions = _clutter_meta_group_peek_metas (priv->actions); | ||
|
||
- for (l = actions; l; l = l->next) | ||
+ for (l = actions; l; l = next) | ||
{ | ||
ClutterAction *action = l->data; | ||
+ next = l->next; | ||
ClutterEventPhase action_phase; | ||
|
||
action_phase = clutter_action_get_phase (action); |