From 2bc8cbfe8f30233fa28c21cfab4cfb0288670aed Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 6 Feb 2023 16:23:32 +0100 Subject: [PATCH] LibGUI: Add 9 and 11 to the list of suggested sizes in FontPicker --- Userland/Libraries/LibGUI/FontPicker.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Libraries/LibGUI/FontPicker.cpp b/Userland/Libraries/LibGUI/FontPicker.cpp index 9deb1b425e..fd8cd92adb 100644 --- a/Userland/Libraries/LibGUI/FontPicker.cpp +++ b/Userland/Libraries/LibGUI/FontPicker.cpp @@ -95,7 +95,9 @@ FontPicker::FontPicker(Window* parent_window, Gfx::Font const* current_font, boo m_size_spin_box->set_visible(true); m_sizes.append(8); + m_sizes.append(9); m_sizes.append(10); + m_sizes.append(11); m_sizes.append(12); m_sizes.append(14); m_sizes.append(16);