diff --git a/Userland/Applications/FontEditor/NewFontDialog.cpp b/Userland/Applications/FontEditor/NewFontDialog.cpp index 91c296080b..3aed9f1d7f 100644 --- a/Userland/Applications/FontEditor/NewFontDialog.cpp +++ b/Userland/Applications/FontEditor/NewFontDialog.cpp @@ -111,7 +111,7 @@ private: update(); } - int m_scale { 20 }; + int m_scale { 10 }; int m_width { 20 }; int m_height { 20 }; int m_glyph_width { 20 }; @@ -127,7 +127,7 @@ NewFontDialog::NewFontDialog(GUI::Window* parent_window) { set_title("New Font"); - m_font_properties_page = GUI::WizardPage::construct("Font properties", "Edit details about this font."); + m_font_properties_page = GUI::WizardPage::construct("Typeface properties", "Edit details about this font."); m_font_properties_page->body_widget().load_from_gml(new_font_dialog_page_1_gml); m_name_textbox = m_font_properties_page->body_widget().find_descendant_of_type_named("name_textbox"); diff --git a/Userland/Applications/FontEditor/NewFontDialogPage2.gml b/Userland/Applications/FontEditor/NewFontDialogPage2.gml index 28f9c7c018..abf3c04f67 100644 --- a/Userland/Applications/FontEditor/NewFontDialogPage2.gml +++ b/Userland/Applications/FontEditor/NewFontDialogPage2.gml @@ -11,7 +11,7 @@ title: "Metadata" fixed_width: 200 layout: @GUI::VerticalBoxLayout { - margins: [4] + margins: [6] } @GUI::Widget { @@ -26,7 +26,7 @@ @GUI::SpinBox { name: "height_spinbox" - min: 0 + min: 1 } } @@ -42,7 +42,7 @@ @GUI::SpinBox { name: "width_spinbox" - min: 0 + min: 1 } } @@ -104,14 +104,15 @@ layout: @GUI::HorizontalBoxLayout { } + @GUI::Widget { + fixed_width: 80 + } + @GUI::CheckBox { name: "fixed_width_checkbox" text: "Fixed width" autosize: true } - - @GUI::Widget { - } } }