1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 14:57:34 +00:00

FontEditor: Set proper defaults in NewFontDialog

GlyphBitmap width is currently limited to twiddling 32 bits so
abide by a 32x36 standard for now. Fixes incorrect line values and
ranges and removes unused RefPtr.
This commit is contained in:
thankyouverycool 2021-04-22 14:40:24 -04:00 committed by Andreas Kling
parent cc7744f6ca
commit f0f487babd
3 changed files with 18 additions and 12 deletions

View file

@ -27,7 +27,6 @@
@GUI::SpinBox {
name: "height_spinbox"
min: 0
max: 34
}
}
@ -44,7 +43,6 @@
@GUI::SpinBox {
name: "width_spinbox"
min: 0
max: 34
}
}
@ -61,7 +59,6 @@
@GUI::SpinBox {
name: "mean_line_spinbox"
min: 0
max: 32
}
}
@ -78,7 +75,6 @@
@GUI::SpinBox {
name: "baseline_spinbox"
min: 0
max: 32
}
}