Skip to content
Snippets Groups Projects
Commit 3607a99e authored by inso's avatar inso
Browse files

Fix infinite recursivity when changing node state

parent 549d18ac
Branches
Tags
No related merge requests found
...@@ -252,8 +252,8 @@ class Node(QObject): ...@@ -252,8 +252,8 @@ class Node(QObject):
self.state, new_state)) self.state, new_state))
if self._state != new_state: if self._state != new_state:
self.last_change = time.time() self.last_change = time.time()
self.changed.emit()
self._state = new_state self._state = new_state
self.changed.emit()
@property @property
def fork_window(self): def fork_window(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment