diff options
author | thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> | 2021-09-23 20:07:34 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-24 14:59:39 +0200 |
commit | fde48f1a7a210abf5288ef2f8234da6a3441e199 (patch) | |
tree | b5f501d28801c20bd804ee8acbf217f06fa644a0 /Userland/Applications/FontEditor/NewFontDialogPage1.gml | |
parent | 91b3e9b7ae9b6f91de3834f85b1926516dd12460 (diff) | |
download | serenity-fde48f1a7a210abf5288ef2f8234da6a3441e199.zip |
FontEditor: Allow editing new font header
And make use of mapping functions moved from
LibGUI/FontPickerWeightModel.h => LibGfx/FontStyleMapping.h
Diffstat (limited to 'Userland/Applications/FontEditor/NewFontDialogPage1.gml')
-rw-r--r-- | Userland/Applications/FontEditor/NewFontDialogPage1.gml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/Userland/Applications/FontEditor/NewFontDialogPage1.gml b/Userland/Applications/FontEditor/NewFontDialogPage1.gml index d70bc5a793..d08c7f3531 100644 --- a/Userland/Applications/FontEditor/NewFontDialogPage1.gml +++ b/Userland/Applications/FontEditor/NewFontDialogPage1.gml @@ -4,7 +4,7 @@ } @GUI::Widget { - fixed_height: 138 + fixed_height: 160 layout: @GUI::VerticalBoxLayout { } @@ -66,6 +66,23 @@ @GUI::Label { fixed_width: 100 text_alignment: "CenterLeft" + text: "Slope:" + } + + @GUI::ComboBox { + name: "slope_combobox" + fixed_width: 180 + model_only: true + } + } + + @GUI::Widget { + layout: @GUI::HorizontalBoxLayout { + } + + @GUI::Label { + fixed_width: 100 + text_alignment: "CenterLeft" text: "Presentation size:" } |