FontEditor: Add Klingon phrase to Preview Font

This commit is contained in:
Lady Gegga 2022-01-12 21:38:10 +01:00 committed by Linus Groh
parent cf6ceb956f
commit 10a52c0b32
Notes: sideshowbarker 2024-07-17 21:01:54 +09:00

View file

@ -42,7 +42,7 @@
#include <LibUnicode/CharacterTypes.h>
#include <stdlib.h>
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<GUI::Window> create_font_preview_window(FontEditorWidget& editor)