HotFix: Open file from OS

This commit is contained in:
2025-05-27 03:40:34 +03:00
parent 57d4ecfd54
commit 37f2bb5eac
4 changed files with 14 additions and 13 deletions

View File

@@ -233,7 +233,7 @@ 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) + "\n";
}
if (lines == 1) {
// "1 symbol per line" - new line offset
@@ -369,7 +369,7 @@ namespace McBitFont {
if (!f.Equals(flast) && f.width > 0) output += ",";
if (com && fcount > 1) {
//...with a comment
output += " // " + f.code.ToString() + " --> " + mainForm.decodeSymbol(f.code);
output += " // " + f.code.ToString() + " --> " + mainForm.DecodeSymbol(f.code);
}
output += "\n";
}