Skip to content

Commit b1066b8

Browse files
committed
node visibility bug fix #314
1 parent 5815ba1 commit b1066b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NodeGraphQt/base/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def set_node_visible(self, visible):
8080
model.set_property('visible', visible)
8181

8282
node_view = self.node.view
83-
node_view.setVisible(visible)
83+
node_view.visible = visible
8484

8585
# redraw the connected pipes in the scene.
8686
ports = node_view.inputs + node_view.outputs

0 commit comments

Comments
 (0)