Skip to content
Snippets Groups Projects
Commit 70ec9a04 authored by Katy Saintin's avatar Katy Saintin
Browse files

Set host field wider

parent 630fa322
No related branches found
No related tags found
No related merge requests found
...@@ -68,6 +68,8 @@ public class EpicsDataSourceSeeker extends AbstractFileDataSourceSeeker { ...@@ -68,6 +68,8 @@ public class EpicsDataSourceSeeker extends AbstractFileDataSourceSeeker {
JPanel northPanel = new JPanel(); JPanel northPanel = new JPanel();
northPanel.add(new JLabel(MESSAGES.getString("Epics.Host"))); northPanel.add(new JLabel(MESSAGES.getString("Epics.Host")));
hostField = new JTextField(LOCAL_HOST); hostField = new JTextField(LOCAL_HOST);
hostField.setSize(500, 35);
hostField.setPreferredSize(hostField.getSize());
hostField.setEditable(true); hostField.setEditable(true);
northPanel.add(hostField); northPanel.add(hostField);
containPane.add(northPanel, BorderLayout.NORTH); containPane.add(northPanel, BorderLayout.NORTH);
......
...@@ -71,6 +71,9 @@ public class MuscadeDataSourceSeeker extends AbstractFileDataSourceSeeker { ...@@ -71,6 +71,9 @@ public class MuscadeDataSourceSeeker extends AbstractFileDataSourceSeeker {
hostField = new JTextField(LOCAL_HOST); hostField = new JTextField(LOCAL_HOST);
// TODO connexion a distance impossible pour le moment IP test 132.166.12.134 // TODO connexion a distance impossible pour le moment IP test 132.166.12.134
// (LIQUE) // (LIQUE)
hostField.setSize(500, 35);
hostField.setPreferredSize(hostField.getSize());
hostField.setEditable(true);
hostField.setEditable(true); hostField.setEditable(true);
northPanel.add(hostField); northPanel.add(hostField);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment