mirror of
https://github.com/angryip/ipscan.git
synced 2025-10-26 11:18:17 +00:00
try to limit the netmaks workaround for Windows only, otherwise it probably breaks on OS X
This commit is contained in:
parent
97f88ea979
commit
bbfece9ceb
@ -189,7 +189,7 @@ public class RangeFeederGUI extends AbstractFeederGUI {
|
||||
if (netmaskCombo.indexOf(netmaskCombo.getText()) < 0) return;
|
||||
|
||||
// workaround for Windows: selection event is fired when the dropdown is opened
|
||||
if (netmaskCombo.getListVisible()) return;
|
||||
if (Platform.WINDOWS && netmaskCombo.getListVisible()) return;
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user