Little fixes (set baseline UI)
This commit is contained in:
1
McBitFont/Form1.Designer.cs
generated
1
McBitFont/Form1.Designer.cs
generated
@@ -123,7 +123,6 @@
|
||||
dotPanel.Paint += dotPanel_Paint;
|
||||
dotPanel.MouseDown += dotPanel_MouseMove;
|
||||
dotPanel.MouseMove += dotPanel_MouseMove;
|
||||
dotPanel.MouseUp += dotPanel_MouseMove;
|
||||
dotPanel.Resize += cbZoom_SelectedIndexChanged;
|
||||
//
|
||||
// nudX
|
||||
|
@@ -1296,7 +1296,7 @@ namespace McBitFont {
|
||||
//MessageBox.Show(w + ": Length: " + w.Length + " Bits: " + bits + " Converted: " + data.Last() + "\nData length: " + data.Count);
|
||||
}
|
||||
}
|
||||
if (MessageBox.Show(bits + "-font found. " + data.Count + " numbers (" + data.Count * bits / 8 + " bytes) total\n" + "Start code: " + data.ElementAt(4) + " End code: " + data.ElementAt(5) + "\nDo you want to load it?", "Import from text file", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) {
|
||||
if (MessageBox.Show(bits + "-bit font found. " + data.Count + " numbers (" + data.Count * bits / 8 + " bytes) total\n" + "Start code: " + data.ElementAt(4) + " End code: " + data.ElementAt(5) + "\nDo you want to load it?", "Import from text file", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) {
|
||||
// Font header
|
||||
bool packed = data.ElementAt(0) == 1;
|
||||
int width= (int)data.ElementAt(1);
|
||||
|
Reference in New Issue
Block a user