mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 23:25:26 +02:00
[165674] sorting subsystem configurations to be aphabetical in order select firsst by default
This commit is contained in:
parent
5c4e5d6b25
commit
1f63baca56
1 changed files with 4 additions and 2 deletions
|
@ -115,11 +115,13 @@ public class SubSystemServiceWizardPage extends AbstractSystemNewConnectionWizar
|
|||
IServiceSubSystemConfiguration factory = factories[i];
|
||||
_serviceElements[i] = new FactoryServiceElement(dummyHost, factory);
|
||||
|
||||
|
||||
if (factory == currentFactory)
|
||||
|
||||
//if (factory == currentFactory)
|
||||
if (i == 0) // use first
|
||||
{
|
||||
_serviceElements[i].setSelected(true);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
return _serviceElements;
|
||||
|
|
Loading…
Add table
Reference in a new issue