1
0
Fork 0
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:
Sean Evoy 2004-06-15 15:40:20 +00:00
parent db634def0a
commit 3a263d390d

View file

@ -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$