environment: Add convenience method for adjustment transitions
By now, Tweener is used exclusively to animate changes to the StAdjustment:value property. But not for long, as now that we implement the same transition API as Clutter.Actor, we can re-use the existing convenience method for property transitions for adjustment changes as well. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/669
This commit is contained in:
parent
72defaa97e
commit
8ac2086ed1
@ -220,6 +220,11 @@ function init() {
|
||||
Clutter.Actor.prototype.ease_property = function(propName, target, params) {
|
||||
_easeActorProperty(this, propName, target, params);
|
||||
};
|
||||
St.Adjustment.prototype.ease = function(target, params) {
|
||||
// we're not an actor of course, but we implement the same
|
||||
// transition API as Clutter.Actor, so this works anyway
|
||||
_easeActorProperty(this, 'value', target, params);
|
||||
};
|
||||
|
||||
Clutter.Actor.prototype.toString = function() {
|
||||
return St.describe_actor(this);
|
||||
|
Loading…
Reference in New Issue
Block a user