Skip to content
Snippets Groups Projects
Commit d0f1a04b authored by Andrea Enrici's avatar Andrea Enrici
Browse files

corrected label for pipeline size

parent cef457af
No related branches found
No related tags found
No related merge requests found
......@@ -148,7 +148,7 @@ public class JDialogBUSNode extends javax.swing.JDialog implements ActionListene
panel2.add(byteDataSize, c2);
c2.gridwidth = 1;
panel2.add(new JLabel("Pipeline size (in byte):"), c2);
panel2.add(new JLabel("Pipeline size (num. stages):"), c2);
c2.gridwidth = GridBagConstraints.REMAINDER; //end row
pipelineSize = new JTextField(""+node.getPipelineSize(), 15);
panel2.add(pipelineSize, c2);
......
......@@ -162,7 +162,7 @@ public class JDialogCPUNode extends javax.swing.JDialog implements ActionListene
panel2.add(byteDataSize, c2);
c2.gridwidth = 1;
panel2.add(new JLabel("Pipeline size (in byte):"), c2);
panel2.add(new JLabel("Pipeline size (num. stages):"), c2);
c2.gridwidth = GridBagConstraints.REMAINDER; //end row
pipelineSize = new JTextField(""+node.getPipelineSize(), 15);
panel2.add(pipelineSize, c2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment