TODO feature: Show note field in Export comments
This commit is contained in:
@@ -233,7 +233,9 @@ namespace McBitFont {
|
||||
if (com && lines != 1 && fcount > 1) {
|
||||
// Comments enabled and other than "1 symbol per line" selected
|
||||
// Print a symbol comment before its data
|
||||
output += " // " + f.code.ToString() + " --> " + mainForm.DecodeSymbol(f.code) + "\n";
|
||||
output += " // " + f.code.ToString() + " --> " + mainForm.DecodeSymbol(f.code);
|
||||
if (f.note != "" && f.note != null) output += " (" + f.note.ToString() + ")";
|
||||
output += "\n";
|
||||
}
|
||||
if (lines == 1) {
|
||||
// "1 symbol per line" - new line offset
|
||||
@@ -370,6 +372,7 @@ namespace McBitFont {
|
||||
if (com && fcount > 1) {
|
||||
//...with a comment
|
||||
output += " // " + f.code.ToString() + " --> " + mainForm.DecodeSymbol(f.code);
|
||||
if (f.note != "" && f.note != null) output += " (" + f.note.ToString() + ")";
|
||||
}
|
||||
output += "\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user