From 10a52c0b3214eddfb053f4e10d1412b79b1bfeb1 Mon Sep 17 00:00:00 2001 From: Lady Gegga <93391300+Xexxa@users.noreply.github.com> Date: Wed, 12 Jan 2022 21:38:10 +0100 Subject: [PATCH] FontEditor: Add Klingon phrase to Preview Font --- Userland/Applications/FontEditor/FontEditor.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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)