Removed the code display button for nodes that don't have code.
This commit is contained in:
parent
ae8474cb57
commit
76fe370cf1
@ -25,6 +25,9 @@ public class NodeToolBar extends javax.swing.JPanel implements ComponentListener
|
|||||||
public NodeToolBar(NodePanel node) {
|
public NodeToolBar(NodePanel node) {
|
||||||
initComponents();
|
initComponents();
|
||||||
this.node = node;
|
this.node = node;
|
||||||
|
if (node.getType() != NodePanel.NodeType.Fragment && node.getType() != NodePanel.NodeType.Vertex) {
|
||||||
|
remove(codeButton);
|
||||||
|
}
|
||||||
node.addComponentListener(this);
|
node.addComponentListener(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user