mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
loginDialog: Stop using deprecated actor property
Commit 0c0d76f7d6 made the class an actor subclass, so the actor
property is just a deprecated synonym of the object itself.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/736
This commit is contained in:
parent
b6754d7db7
commit
7b45ffa511
1 changed files with 2 additions and 2 deletions
|
|
@ -921,7 +921,7 @@ var LoginDialog = GObject.registerClass({
|
|||
return;
|
||||
|
||||
this._bindOpacity();
|
||||
this.actor.ease({
|
||||
this.ease({
|
||||
opacity: 255,
|
||||
duration: _FADE_ANIMATION_TIME,
|
||||
mode: Clutter.AnimationMode.EASE_OUT_QUAD,
|
||||
|
|
@ -944,7 +944,7 @@ var LoginDialog = GObject.registerClass({
|
|||
|
||||
_startSession(serviceName) {
|
||||
this._bindOpacity();
|
||||
this.actor.ease({
|
||||
this.ease({
|
||||
opacity: 0,
|
||||
duration: _FADE_ANIMATION_TIME,
|
||||
mode: Clutter.AnimationMode.EASE_OUT_QUAD,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue