From cf20d52e98d5c1d3e7a0dc21e3c4390ad0db1b08 Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 13 Feb 2022 15:38:09 -0800 Subject: [PATCH] Tweak rocket ship --- desktop/onionshare/connection_tab.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/desktop/onionshare/connection_tab.py b/desktop/onionshare/connection_tab.py index fc78ba15..ccfc00df 100644 --- a/desktop/onionshare/connection_tab.py +++ b/desktop/onionshare/connection_tab.py @@ -391,7 +391,6 @@ class AnimStars(Anim): def move(self): self.x = self.window.width() - self.w self.y = 0 - # Stars don't move until 10%, then move down if self.percent >= 10: self.y += self.percent * 6.6 @@ -428,7 +427,7 @@ class AnimSmoke(Anim): # Smoke moves up until 50%, then moves down self.y -= self.percent * 6.6 if self.percent >= 50: - self.y += self.percent * 6.6 + self.y += self.percent * 6.7 class AutoConnectFirstLaunchWidget(QtWidgets.QWidget):