We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 369a8c8 commit 4e62391Copy full SHA for 4e62391
lib/RoundedCornersEffect.vala
@@ -47,13 +47,13 @@ public class Gala.RoundedCornersEffect : Clutter.ShaderEffect {
47
}
48
49
50
- public override void set_actor (Clutter.Actor? actor) {
+ public override void set_actor (Clutter.Actor? new_actor) {
51
if (actor != null) {
52
actor.notify["width"].disconnect (update_actor_size);
53
actor.notify["height"].disconnect (update_actor_size);
54
55
56
- base.set_actor (actor);
+ base.set_actor (new_actor);
57
58
59
actor.notify["width"].connect (update_actor_size);
0 commit comments