eclipse plugin: Make the install selection combo box readonly

This commit is contained in:
Timotei Dolean 2011-07-30 08:00:34 +00:00
parent b551a92fef
commit a94821441a

View file

@ -46,7 +46,7 @@ public class SelectWesnothInstallDialog extends Dialog
lblWesnothInstall.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
lblWesnothInstall.setText("Wesnoth Install:");
cmbInstall_ = new Combo(composite, SWT.NONE);
cmbInstall_ = new Combo( composite, SWT.READ_ONLY );
GridData gd_cmbInstall_ = new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1);
gd_cmbInstall_.widthHint = 163;
cmbInstall_.setLayoutData(gd_cmbInstall_);