(self)
| 723 | QTimer.singleShot(5200, lambda: self.end_animation()) |
| 724 | |
| 725 | def end_animation(self): |
| 726 | self.end_animation = QPropertyAnimation(self, b"geometry") |
| 727 | self.end_animation.setDuration(200) |
| 728 | self.end_animation.setStartValue(QRect(self.desktop.width() - 410, self.desktop.height() - 110, 400, 100)) |
| 729 | self.end_animation.setEndValue(QRect(self.desktop.width() - 1, self.desktop.height() - 110, 1, 100)) |
| 730 | self.end_animation.start() |
| 731 | QTimer.singleShot(200, lambda: self.close_notify()) |
| 732 | |
| 733 | def close_notify(self): |
| 734 | self.close() |
no test coverage detected