Skip to content

Commit

Permalink
node visibility bug fix #314
Browse files Browse the repository at this point in the history
  • Loading branch information
jchanvfx committed Mar 26, 2023
1 parent 5815ba1 commit b1066b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NodeGraphQt/base/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def set_node_visible(self, visible):
model.set_property('visible', visible)

node_view = self.node.view
node_view.setVisible(visible)
node_view.visible = visible

# redraw the connected pipes in the scene.
ports = node_view.inputs + node_view.outputs
Expand Down

0 comments on commit b1066b8

Please sign in to comment.