mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Bug 436096 - Fix Tab order in Connection dialog
Shouldn't be necessary because it should be the default order. But on Linux and Windows (but not OSX) it somehow isn't the correct without. Change-Id: Ifb0babe7c0014b07510ef9789e274f1d8e83829c
This commit is contained in:
parent
5a6ab10f37
commit
fdcc7b3987
1 changed files with 2 additions and 0 deletions
|
@ -44,6 +44,7 @@ import org.eclipse.swt.widgets.Text;
|
|||
import org.eclipse.ui.forms.events.ExpansionEvent;
|
||||
import org.eclipse.ui.forms.events.IExpansionListener;
|
||||
import org.eclipse.ui.forms.widgets.ExpandableComposite;
|
||||
import org.eclipse.swt.widgets.Control;
|
||||
|
||||
public class JSchConnectionPage extends WizardPage {
|
||||
private class DataModifyListener implements ModifyListener {
|
||||
|
@ -197,6 +198,7 @@ public class JSchConnectionPage extends WizardPage {
|
|||
|
||||
fPasswordButton.setSelection(true);
|
||||
fPublicKeyButton.setSelection(false);
|
||||
controls.setTabList(new Control[]{fHostText, fUserText, fPasswordButton, fPasswordText, fPublicKeyButton, fFileWidget, fPassphraseText});
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue