Bug fixed: VarWidth fonts height change resets all frames' width
This commit is contained in:
@@ -162,7 +162,7 @@ namespace McBitFont {
|
|||||||
private void nudY_ValueChanged(object sender, EventArgs e) {
|
private void nudY_ValueChanged(object sender, EventArgs e) {
|
||||||
Bitmap bmp;
|
Bitmap bmp;
|
||||||
for (int i = 0; i < frames.Count; i++) {
|
for (int i = 0; i < frames.Count; i++) {
|
||||||
frames[i] = frameResize(frames[i], dotWidth, (int)nudY.Value);
|
frames[i] = frameResize(frames[i], frames[i].width, (int)nudY.Value);
|
||||||
bmp = getMiniPictue(frames[i]);
|
bmp = getMiniPictue(frames[i]);
|
||||||
string s = frames[i].code.ToString().PadLeft(3, '0');
|
string s = frames[i].code.ToString().PadLeft(3, '0');
|
||||||
ilMiniatures.Images.RemoveByKey(s);
|
ilMiniatures.Images.RemoveByKey(s);
|
||||||
|
2
TODO.txt
2
TODO.txt
@@ -1,5 +1,4 @@
|
|||||||
Application:
|
Application:
|
||||||
- Implement "Save" menu
|
|
||||||
|
|
||||||
Functionality:
|
Functionality:
|
||||||
- Context menu in symbol navigator
|
- Context menu in symbol navigator
|
||||||
@@ -20,4 +19,3 @@ Functionality:
|
|||||||
- "Packed" fonts export
|
- "Packed" fonts export
|
||||||
|
|
||||||
Bugs:
|
Bugs:
|
||||||
- Every char changes its width to default on VarWidth font height change!
|
|
Reference in New Issue
Block a user