(actorsLeftList: Clutter.Actor[])
| 232 | } |
| 233 | |
| 234 | endTransition(actorsLeftList: Clutter.Actor[]): void { |
| 235 | this.container.translation_x = 0; |
| 236 | this.container.translation_y = 0; |
| 237 | for (const child of this.container.get_children()) { |
| 238 | child.set_translation(0, 0, 0); |
| 239 | child.show(); |
| 240 | } |
| 241 | this.animationInProgress = false; |
| 242 | this.emit('transition-completed', actorsLeftList); |
| 243 | } |
| 244 | } |
no test coverage detected