1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:47:35 +00:00

FontEditor: change "Mean Line:" label to "Mean line:"

Matches the case used in other labels in the app.
This commit is contained in:
Nico Weber 2021-01-24 13:54:58 -05:00 committed by Andreas Kling
parent 42a8f99374
commit 40f6dfeacc

View file

@ -243,7 +243,7 @@ FontEditorWidget::FontEditorWidget(const String& path, RefPtr<Gfx::BitmapFont>&&
auto& mean_line_label = mean_line_container.add<GUI::Label>(); auto& mean_line_label = mean_line_container.add<GUI::Label>();
mean_line_label.set_fixed_width(100); mean_line_label.set_fixed_width(100);
mean_line_label.set_text_alignment(Gfx::TextAlignment::CenterLeft); mean_line_label.set_text_alignment(Gfx::TextAlignment::CenterLeft);
mean_line_label.set_text("Mean Line:"); mean_line_label.set_text("Mean line:");
auto& mean_line_spinbox = mean_line_container.add<GUI::SpinBox>(); auto& mean_line_spinbox = mean_line_container.add<GUI::SpinBox>();
mean_line_spinbox.set_min(0); mean_line_spinbox.set_min(0);