GT-2703: changed label on intel hex option to be intelligible

This commit is contained in:
adamopolous 2019-04-02 10:40:08 -04:00
parent 7caa7e369b
commit a3121e19a4
2 changed files with 2 additions and 2 deletions

View File

@ -308,7 +308,7 @@
address space.</LI>
<LI><B>Record Size</B> - Specifies the size (in bytes) of each record in the
output file. The default 16.</LI>
<LI><B>Drop Extra Bytes</B> - If checked, this will ensure that <b>only</b> records matching
<LI><B>Align To Record Size</B> - If checked, this will ensure that <b>only</b> records matching
the record size will be output. eg: if you set the record size to 16 but there are
18 bytes selected, you will see only one line of 16 bytes in the output; the remaining
2 bytes will be dropped.</LI>

View File

@ -302,7 +302,7 @@ public class IntelHexExporter extends Exporter {
setLayout(new BorderLayout());
input = new HintTextField(Integer.toString(recordSize), false, new BoundedIntegerVerifier());
dropCb = new JCheckBox("Drop Extra Bytes");
dropCb = new JCheckBox("Align To Record Size");
input.setText(Integer.toString(recordSize));