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
commit 40f6dfeacc
Notes: sideshowbarker 2024-07-18 22:53:44 +09:00

View file

@ -243,7 +243,7 @@ FontEditorWidget::FontEditorWidget(const String& path, RefPtr<Gfx::BitmapFont>&&
auto& mean_line_label = mean_line_container.add<GUI::Label>();
mean_line_label.set_fixed_width(100);
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>();
mean_line_spinbox.set_min(0);