mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +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 = 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);
|
final Label dotLabel = new Label(outputGroup, SWT.CENTER);
|
||||||
dotLabel.setFont(outputGroup.getFont());
|
dotLabel.setFont(outputGroup.getFont());
|
||||||
dotLabel.setText(new String(".")); //$NON-NLS-1$
|
dotLabel.setText(new String(".")); //$NON-NLS-1$
|
||||||
|
|
Loading…
Add table
Reference in a new issue