Skip to content
Snippets Groups Projects
Commit d39440a8 authored by tjc's avatar tjc
Browse files

improve look

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@10675 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 6154e816
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ class FileSelectionPanel extends JPanel
row++;
c.gridy = row;
add(Box.createVerticalStrut(5), c);
add(Box.createVerticalStrut(10), c);
row++;
if(restrictOutputs == null || restrictOutputs.size() == 0)
......@@ -108,18 +108,23 @@ class FileSelectionPanel extends JPanel
embossRootField = new JTextField(System.getProperty("EMBOSS_ROOT"), 30);
c.gridy = row;
c.gridx = 0;
c.anchor = GridBagConstraints.EAST;
add(new JLabel("EMBOSS location "), c);
add(new JLabel(" EMBOSS location: "), c);
c.gridx = 1;
c.anchor = GridBagConstraints.WEST;
add(embossRootField, c);
row++;
c.gridy = row;
add(Box.createVerticalStrut(5), c);
add(Box.createVerticalStrut(10), c);
row++;
}
c.gridy = row;
c.gridx = 0;
c.anchor = GridBagConstraints.WEST;
add(new JLabel(" Sequence file(s): "), c);
row++;
if(sequenceFiles == null || sequenceFiles.size() < 1)
addSelectionRow(null);
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment