mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Last fix for bug 61459 - Accessibility: Managed Build: Managed Config dialog needs z-order. There was another entry widget that was displaying this problem.
This commit is contained in:
parent
db634def0a
commit
3a263d390d
1 changed files with 6 additions and 1 deletions
|
@ -177,7 +177,12 @@ public class ManageConfigDialog extends Dialog {
|
|||
buildArtifactName = null;
|
||||
}
|
||||
});
|
||||
|
||||
buildArtifactName.getAccessible().addAccessibleListener(new AccessibleAdapter(){
|
||||
public void getName(AccessibleEvent e) {
|
||||
e.result = ManagedBuilderUIMessages.getResourceString(OUTPUT_NAME);
|
||||
}
|
||||
});
|
||||
|
||||
final Label dotLabel = new Label(outputGroup, SWT.CENTER);
|
||||
dotLabel.setFont(outputGroup.getFont());
|
||||
dotLabel.setText(new String(".")); //$NON-NLS-1$
|
||||
|
|
Loading…
Add table
Reference in a new issue