mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Bug 518116 - Allow user to enter a non-listed port name.
This is a quick fix to allow users to enter cdtserial port names that we don't pick up in the device list. Change-Id: I9473278c6e65e2a2bc7bb40c78e41fdf9d349f44
This commit is contained in:
parent
29a6d3d999
commit
b63f284ac3
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ public class SerialSettingsPage extends AbstractSettingsPage {
|
|||
Label portLabel = new Label(comp, SWT.NONE);
|
||||
portLabel.setText(Messages.SerialTerminalSettingsPage_SerialPort);
|
||||
|
||||
portCombo = new Combo(comp, SWT.READ_ONLY);
|
||||
portCombo = new Combo(comp, SWT.NONE);
|
||||
portCombo.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
|
||||
String[] portNames = new String[0];
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue