mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-04 15:45:25 +02:00
[fix] system profile selection combo empty on second invocation of new connection wizard
This commit is contained in:
parent
e6c3895d55
commit
d4c9e1702a
1 changed files with 3 additions and 1 deletions
|
@ -646,7 +646,9 @@ public class SystemConnectionForm
|
|||
if (!updateMode)
|
||||
{
|
||||
profileCombo = SystemWidgetHelpers.createReadonlyCombo(
|
||||
composite_prompts,null,SystemResources.RESID_CONNECTION_PROFILE_TIP);
|
||||
composite_prompts,null,SystemResources.RESID_CONNECTION_PROFILE_TIP);
|
||||
if (defaultProfileNames != null) profileCombo.setItems(defaultProfileNames);
|
||||
if (defaultProfile != null) setProfileNamePreSelection(defaultProfile);
|
||||
SystemWidgetHelpers.setHelp(profileCombo, RSEUIPlugin.HELPPREFIX + "ccon0001"); //$NON-NLS-1$
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue