Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 190633 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/help/ui/internal/preferences/HelpContentPreferencePage.java (+4 lines)
Lines 164-169 Link Here
164
        hostLabel.setText(Messages.HelpContentPreferencePage_host);
164
        hostLabel.setText(Messages.HelpContentPreferencePage_host);
165
        hostText = new Text(parent, SWT.BORDER);
165
        hostText = new Text(parent, SWT.BORDER);
166
        hostText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
166
        hostText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
167
        if (hostText.getOrientation() == SWT.RIGHT_TO_LEFT)
168
        	hostText.setOrientation(SWT.LEFT_TO_RIGHT);
167
        hostText.addListener(SWT.Modify, changeListener);
169
        hostText.addListener(SWT.Modify, changeListener);
168
	}
170
	}
169
171
Lines 175-180 Link Here
175
        pathLabel.setText(Messages.HelpContentPreferencePage_path);
177
        pathLabel.setText(Messages.HelpContentPreferencePage_path);
176
        pathText = new Text(parent, SWT.BORDER);
178
        pathText = new Text(parent, SWT.BORDER);
177
        pathText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
179
        pathText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false));
180
        if (pathText.getOrientation() == SWT.RIGHT_TO_LEFT)
181
        	pathText.setOrientation(SWT.LEFT_TO_RIGHT);
178
        pathText.addListener(SWT.Modify, changeListener);
182
        pathText.addListener(SWT.Modify, changeListener);
179
	}
183
	}
180
184

Return to bug 190633