mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-4520 fixing accessibility for SaveDataDialog and DomainFilePanel
This commit is contained in:
parent
6c60bd0313
commit
e1352bf7cc
4 changed files with 58 additions and 5 deletions
|
@ -87,6 +87,7 @@ public class ByteViewerOptionsDialog extends DialogComponentProvider
|
|||
addressInputField.setAddress(getAlignmentAddress());
|
||||
panel.add(addressInputField);
|
||||
addressInputField.addChangeListener(this);
|
||||
addressInputField.setAccessibleName("Alignment Address");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -97,6 +98,7 @@ public class ByteViewerOptionsDialog extends DialogComponentProvider
|
|||
bytesPerLineField.setValue(BigInteger.valueOf(provider.getBytesPerLine()));
|
||||
panel.add(bytesPerLineField);
|
||||
bytesPerLineField.addChangeListener(this);
|
||||
bytesPerLineField.getAccessibleContext().setAccessibleName("Bytes Per Line");
|
||||
|
||||
panel.add(new GLabel("Group size (Hex View Only):"));
|
||||
groupSizeField = new FixedBitSizeValueField(8, false, true);
|
||||
|
@ -105,6 +107,7 @@ public class ByteViewerOptionsDialog extends DialogComponentProvider
|
|||
groupSizeField.setValue(BigInteger.valueOf(provider.getGroupSize()));
|
||||
panel.add(groupSizeField);
|
||||
groupSizeField.addChangeListener(this);
|
||||
groupSizeField.getAccessibleContext().setAccessibleName("Group Size");
|
||||
|
||||
return panel;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue