diff --git a/Userland/Applications/FontEditor/FontEditor.cpp b/Userland/Applications/FontEditor/FontEditor.cpp index fa1e859f10..6ac1691282 100644 --- a/Userland/Applications/FontEditor/FontEditor.cpp +++ b/Userland/Applications/FontEditor/FontEditor.cpp @@ -42,7 +42,7 @@ #include #include -static constexpr int s_pangram_count = 7; +static constexpr int s_pangram_count = 8; static char const* pangrams[s_pangram_count] = { "quick fox jumps nightly above wizard", "five quacking zephyrs jolt my wax bed", @@ -50,7 +50,8 @@ static char const* pangrams[s_pangram_count] = { "quick brown fox jumps over the lazy dog", "waxy and quivering jocks fumble the pizza", "~#:[@_1%]*{$2.3}/4^(5'6\")-&|7+8!=<9,0\\>?;", - "byxfjärmat föl gick på duvshowen" + "byxfjärmat föl gick på duvshowen", + "         " }; static RefPtr create_font_preview_window(FontEditorWidget& editor)