diff --git a/src/net/azib/ipscan/gui/feeders/RangeFeederGUI.java b/src/net/azib/ipscan/gui/feeders/RangeFeederGUI.java index 52644037..a60ba6d2 100644 --- a/src/net/azib/ipscan/gui/feeders/RangeFeederGUI.java +++ b/src/net/azib/ipscan/gui/feeders/RangeFeederGUI.java @@ -116,7 +116,7 @@ public class RangeFeederGUI extends AbstractFeederGUI { Rectangle comboBounds = netmaskCombo.getBounds(); Rectangle endIPBounds = endIPText.getBounds(); int width = endIPBounds.x + endIPBounds.width - comboBounds.x - 5; - if (Platform.WINDOWS) width -= 22; // TODO: probably this number will change with updated SWT version + if (Platform.WINDOWS) width -= 22; // TODO: remove width of down arrow, this number may change with updated SWT version ((GridData) netmaskCombo.getLayoutData()).widthHint = width; pack();