From a5202b61d2a82de1c8985417d983405ec3f80d94 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 19 Nov 2021 16:22:41 +0100 Subject: [PATCH] Don't emit with new profile The signal can't accept it because it's not a QObject. Contributes to issue CURA-8539. --- cura/API/Account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/API/Account.py b/cura/API/Account.py index 9a4dceb3c9..bf8a883c1a 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -209,7 +209,7 @@ class Account(QObject): def _onProfileChanged(self, profile: UserProfile): self._user_profile = profile - self.userProfileChanged.emit(profile) + self.userProfileChanged.emit() def _sync(self) -> None: """Signals all sync services to start syncing