mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 15:44:04 -06:00
Don't emit with new profile
The signal can't accept it because it's not a QObject. Contributes to issue CURA-8539.
This commit is contained in:
parent
bfb8440a04
commit
a5202b61d2
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ class Account(QObject):
|
||||||
|
|
||||||
def _onProfileChanged(self, profile: UserProfile):
|
def _onProfileChanged(self, profile: UserProfile):
|
||||||
self._user_profile = profile
|
self._user_profile = profile
|
||||||
self.userProfileChanged.emit(profile)
|
self.userProfileChanged.emit()
|
||||||
|
|
||||||
def _sync(self) -> None:
|
def _sync(self) -> None:
|
||||||
"""Signals all sync services to start syncing
|
"""Signals all sync services to start syncing
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue