Network: Add missing () on method to check if study is editable

dev_dylan
Dylan Jeannin 2026-05-26 08:06:07 +02:00
parent 445c1ac7ba
commit 0c7ede5f43
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ class NetworkWindow(PamhyrWindow):
self._graph_widget.changeEdge.connect(self.update)
self._graph_widget.changeNode.connect(self.update)
if self._study.is_editable:
if self._study.is_editable():
self._nodes_model\
.dataChanged\
.connect(self._graph_widget.rename_nodes)