TODO feature: Show note field in Export comments

This commit is contained in:
Anton Mukhin
2025-07-08 10:10:35 +03:00
parent d70d8d8a3c
commit 6cbc206260
2 changed files with 5 additions and 4 deletions

View File

@@ -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";
}

View File

@@ -2,9 +2,7 @@ Application:
- Consider migrating to WPF in order to make DPI aware UI
Functionality:
V Screensot a frame function
V Frame note field to store a frame description
- Show note field in Export comments
V Show note field in Export comments
Bugs: