diff --git a/src/net/azib/ipscan/gui/MainWindow.java b/src/net/azib/ipscan/gui/MainWindow.java index eac8adc6..bf8c04fd 100755 --- a/src/net/azib/ipscan/gui/MainWindow.java +++ b/src/net/azib/ipscan/gui/MainWindow.java @@ -198,12 +198,12 @@ public class MainWindow { // start/stop button Button button = new Button(controlsArea, SWT.NONE); shell.setDefaultButton(button); - button.setLayoutData(new RowData(SWT.DEFAULT, SWT.DEFAULT)); + button.setLayoutData(new RowData(SWT.DEFAULT, 23)); button.addSelectionListener(new StartStopScanningAction(this, button)); // feeder selection combobox feederSelectionCombo = new Combo(controlsArea, SWT.READ_ONLY); - feederSelectionCombo.setLayoutData(new RowData(SWT.DEFAULT, SWT.DEFAULT)); + feederSelectionCombo.setLayoutData(new RowData(SWT.DEFAULT, 23)); for (Iterator i = feederGUIList.iterator(); i.hasNext();) { AbstractFeederGUI feederGUI = (AbstractFeederGUI) i.next(); feederSelectionCombo.add(feederGUI.getFeederName()); diff --git a/src/net/azib/ipscan/gui/feeders/FileFeederGUI.java b/src/net/azib/ipscan/gui/feeders/FileFeederGUI.java index 6483c847..1556bcaf 100755 --- a/src/net/azib/ipscan/gui/feeders/FileFeederGUI.java +++ b/src/net/azib/ipscan/gui/feeders/FileFeederGUI.java @@ -63,7 +63,7 @@ public class FileFeederGUI extends AbstractFeederGUI { formData = new FormData(); formData.top = new FormAttachment(0); formData.left = new FormAttachment(fileNameText); - formData.height = 20; + formData.height = 22; browseButton.setLayoutData(formData); browseButton.addSelectionListener(new SelectionListener() {