From 056ca6277837ab2c3fc9380a2d8ccd2793f23491 Mon Sep 17 00:00:00 2001 From: electrikmilk Date: Sat, 5 Mar 2022 15:05:48 -0500 Subject: [PATCH] FontEditor: Add code previews for fixed-width fonts Add pseudo code to font preview for fixed-width programming fonts. --- Userland/Applications/FontEditor/FontEditor.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Userland/Applications/FontEditor/FontEditor.cpp b/Userland/Applications/FontEditor/FontEditor.cpp index aa1bb2db5c..c41fd41bdc 100644 --- a/Userland/Applications/FontEditor/FontEditor.cpp +++ b/Userland/Applications/FontEditor/FontEditor.cpp @@ -51,7 +51,9 @@ static constexpr Array pangrams = { "waxy and quivering jocks fumble the pizza", "~#:[@_1%]*{$2.3}/4^(5'6\")-&|7+8!=<9,0\\>?;", "byxfjärmat föl gick på duvshowen", - "         " + "         ", + "float Fox.quick(h){ is_brown && it_jumps_over(doges.lazy) }", + "lazy dog" }; static RefPtr create_font_preview_window(FontEditorWidget& editor)