Browse Source

LibGUI: Add 9 and 11 to the list of suggested sizes in FontPicker

Andreas Kling 2 năm trước cách đây
mục cha
commit
2bc8cbfe8f
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      Userland/Libraries/LibGUI/FontPicker.cpp

+ 2 - 0
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);