(shellwm, actor)
| 1538 | } |
| 1539 | |
| 1540 | _mapWindowDone(shellwm, actor) { |
| 1541 | if (this._mapping.delete(actor)) { |
| 1542 | actor.remove_all_transitions(); |
| 1543 | actor.opacity = 255; |
| 1544 | actor.set_pivot_point(0, 0); |
| 1545 | actor.scale_y = 1; |
| 1546 | actor.scale_x = 1; |
| 1547 | actor.translation_y = 0; |
| 1548 | actor.translation_x = 0; |
| 1549 | shellwm.completed_map(actor); |
| 1550 | } |
| 1551 | } |
| 1552 | |
| 1553 | _destroyWindow(shellwm, actor) { |
| 1554 | const window = actor.meta_window; |
no test coverage detected