Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2007-06-22 17:23:21 +0000
committerMichael Valenta2007-06-22 17:23:21 +0000
commit5a11ec573508f72487137d726ca6ca718be51f75 (patch)
tree2666f760355d32c6652229b9aa6e42864e072b8c /bundles/org.eclipse.jsch.ui/src/org/eclipse
parent7a35ca5f65c81a960ee2ab3dcc826854af9713cd (diff)
downloadeclipse.platform.team-5a11ec573508f72487137d726ca6ca718be51f75.tar.gz
eclipse.platform.team-5a11ec573508f72487137d726ca6ca718be51f75.tar.xz
eclipse.platform.team-5a11ec573508f72487137d726ca6ca718be51f75.zip
Bug 190626 [SSH2] TVT33:TCT436: IW: Fingerprint filed is RTL and garbled
Diffstat (limited to 'bundles/org.eclipse.jsch.ui/src/org/eclipse')
-rw-r--r--bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/internal/ui/preference/PreferencePage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/internal/ui/preference/PreferencePage.java b/bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/internal/ui/preference/PreferencePage.java
index 706e8808e..a7e278618 100644
--- a/bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/internal/ui/preference/PreferencePage.java
+++ b/bundles/org.eclipse.jsch.ui/src/org/eclipse/jsch/internal/ui/preference/PreferencePage.java
@@ -242,7 +242,7 @@ public class PreferencePage extends org.eclipse.jface.preference.PreferencePage
gd.horizontalSpan=columnSpan;
publicKeylabel.setLayoutData(gd);
- publicKeyText=new Text(group, SWT.MULTI|SWT.BORDER|SWT.V_SCROLL|SWT.WRAP);
+ publicKeyText=new Text(group, SWT.MULTI|SWT.BORDER|SWT.V_SCROLL|SWT.WRAP|SWT.LEFT_TO_RIGHT);
publicKeyText.setText(""); //$NON-NLS-1$
publicKeyText.setEditable(false);
gd=new GridData();
@@ -255,7 +255,7 @@ public class PreferencePage extends org.eclipse.jface.preference.PreferencePage
keyFingerPrintLabel=new Label(group, SWT.NONE);
keyFingerPrintLabel.setText(Messages.CVSSSH2PreferencePage_41);
- keyFingerPrintText=new Text(group, SWT.SINGLE|SWT.BORDER);
+ keyFingerPrintText=new Text(group, SWT.SINGLE|SWT.BORDER|SWT.LEFT_TO_RIGHT);
keyFingerPrintText.setFont(group.getFont());
keyFingerPrintText.setEditable(false);
gd=new GridData(GridData.FILL_HORIZONTAL);

Back to the top