Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2007-07-16 15:44:36 +0000
committerChris Goldthorpe2007-07-16 15:44:36 +0000
commit0e84f2d7be6bd3caf27a13a2f79988b7ed2aede3 (patch)
tree74f0f2d1be87b58f5b823936ede3838ff806bb36
parent39d73b6abca604f03a931dc4ff567e67ccb9d744 (diff)
downloadeclipse.platform.ua-0e84f2d7be6bd3caf27a13a2f79988b7ed2aede3.tar.gz
eclipse.platform.ua-0e84f2d7be6bd3caf27a13a2f79988b7ed2aede3.tar.xz
eclipse.platform.ua-0e84f2d7be6bd3caf27a13a2f79988b7ed2aede3.zip
Bug 190633 - [Help]TVT33:TCT441: IW: Help path in preference is RTLv20070717_33x
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpContentPreferencePage.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpContentPreferencePage.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpContentPreferencePage.java
index 5910d51c2..670a6c4c2 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpContentPreferencePage.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/preferences/HelpContentPreferencePage.java
@@ -164,6 +164,8 @@ public class HelpContentPreferencePage extends PreferencePage
hostLabel.setText(Messages.HelpContentPreferencePage_host);
hostText = new Text(parent, SWT.BORDER);
hostText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
+ if (hostText.getOrientation() == SWT.RIGHT_TO_LEFT)
+ hostText.setOrientation(SWT.LEFT_TO_RIGHT);
hostText.addListener(SWT.Modify, changeListener);
}
@@ -175,6 +177,8 @@ public class HelpContentPreferencePage extends PreferencePage
pathLabel.setText(Messages.HelpContentPreferencePage_path);
pathText = new Text(parent, SWT.BORDER);
pathText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
+ if (pathText.getOrientation() == SWT.RIGHT_TO_LEFT)
+ pathText.setOrientation(SWT.LEFT_TO_RIGHT);
pathText.addListener(SWT.Modify, changeListener);
}

Back to the top