Browse Source

PatchCanvas: Fix split option logic

tags/v0.9.0
falkTX 12 years ago
parent
commit
c14875e1f9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/patchcanvas.py

+ 1
- 1
src/patchcanvas.py View File

@@ -2356,7 +2356,7 @@ class CanvasBox(QGraphicsItem):
elif port.port_mode == PORT_MODE_OUTPUT:
haveOuts = True

if not (self.m_splitted and bool(haveIns and haveOuts)):
if not (self.m_splitted or bool(haveIns and haveOuts)):
act_x_sep2.setVisible(False)
act_x_split_join.setVisible(False)



Loading…
Cancel
Save