1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Fixes for ESP32.

In the new toolchain wizard, the select button wasn't hooked up.
So I turned it off. Also, we had no build settings tab on the serial
launch.

Change-Id: I811f579334889085f49d298878589109c5e4a228
This commit is contained in:
Doug Schaefer 2017-12-01 16:28:29 -05:00
parent d6a1c13e5c
commit 6a12755a4e
2 changed files with 14 additions and 3 deletions

View file

@ -124,13 +124,16 @@ public class NewEnvVarDialog extends Dialog {
label.setText(Messages.NewEnvVarDialog_Name);
nameText = new Text(comp, SWT.BORDER);
nameText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
layoutData = new GridData(SWT.FILL, SWT.CENTER, true, false);
layoutData.horizontalSpan = 2;
nameText.setLayoutData(layoutData);
if (envvar != null) {
nameText.setText(envvar.getName());
}
Button selectButton = new Button(comp, SWT.PUSH);
selectButton.setText(Messages.NewEnvVarDialog_Select);
// TODO
// Button selectButton = new Button(comp, SWT.PUSH);
// selectButton.setText(Messages.NewEnvVarDialog_Select);
valueLabel = new Label(comp, SWT.NONE);
valueLabel.setText(Messages.NewEnvVarDialog_Value);

View file

@ -22,5 +22,13 @@
type="org.eclipse.cdt.launch.serial.launchConfigurationType">
</launchConfigurationTabGroup>
</extension>
<extension
point="org.eclipse.launchbar.ui.launchBarUIContributions">
<buildTabGroup
launchConfigType="org.eclipse.cdt.launch.serial.launchConfigurationType"
launchDescriptorType="org.eclipse.cdt.debug.core.coreBuildDescriptorType"
tabGroup="org.eclipse.cdt.launch.internal.corebuild.CoreBuildTabGroup">
</buildTabGroup>
</extension>
</plugin>