mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 15:05:36 +02:00
Patch for bug 189003 by Jason Montojo - fixing tab order
This commit is contained in:
parent
ffd2cee5c1
commit
f139474fac
1 changed files with 12 additions and 3 deletions
|
@ -182,6 +182,17 @@ public class ImportExecutablePageOne extends WizardPage {
|
|||
workArea.setLayoutData(new GridData(GridData.FILL_BOTH
|
||||
| GridData.GRAB_HORIZONTAL | GridData.GRAB_VERTICAL));
|
||||
|
||||
//bug 189003: to fix the tab order on the page
|
||||
if (wizard.userSelectsBinaryParser()) {
|
||||
Composite binaryParserGroup = new Composite(workArea, SWT.NONE);
|
||||
GridLayout layout = new GridLayout(3, false);
|
||||
layout.numColumns = 3;
|
||||
layout.makeColumnsEqualWidth = false;
|
||||
layout.marginWidth = 0;
|
||||
binaryParserGroup.setLayout(layout);
|
||||
createSelectBinaryParser(binaryParserGroup);
|
||||
}
|
||||
|
||||
Composite selectExecutableGroup = new Composite(workArea, SWT.NONE);
|
||||
GridLayout layout = new GridLayout();
|
||||
layout.numColumns = 3;
|
||||
|
@ -191,8 +202,6 @@ public class ImportExecutablePageOne extends WizardPage {
|
|||
selectExecutableGroup.setLayoutData(new GridData(
|
||||
GridData.FILL_HORIZONTAL));
|
||||
|
||||
if (wizard.userSelectsBinaryParser())
|
||||
createSelectBinaryParser(selectExecutableGroup);
|
||||
createSelectExecutable(selectExecutableGroup);
|
||||
createExecutablesRoot(selectExecutableGroup);
|
||||
createExecutablesList(workArea);
|
||||
|
|
Loading…
Add table
Reference in a new issue