1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:37:34 +00:00

FontEditor: Add move glyph tool

When toggled on, glyphs can now be repositioned within the glyph
editor by dragging the mouse
This commit is contained in:
thankyouverycool 2021-04-22 14:15:21 -04:00 committed by Andreas Kling
parent 44cd121e30
commit bada590b91
5 changed files with 101 additions and 8 deletions

View file

@ -31,13 +31,24 @@
layout: @GUI::VerticalBoxLayout {
}
@GUI::SpinBox {
name: "glyph_editor_width_spinbox"
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
}
@GUI::CheckBox {
name: "glyph_editor_present_checkbox"
text: "Glyph Present"
@GUI::SpinBox {
name: "glyph_editor_width_spinbox"
}
@GUI::CheckBox {
name: "glyph_editor_present_checkbox"
text: "Show"
}
@GUI::Button {
name: "move_glyph_button"
fixed_width: 22
button_style: "Coolbar"
}
}
}