diff --git a/Userland/Applications/FontEditor/GlyphMapWidget.cpp b/Userland/Applications/FontEditor/GlyphMapWidget.cpp index 29fa63ee8a8..037e2b147fe 100644 --- a/Userland/Applications/FontEditor/GlyphMapWidget.cpp +++ b/Userland/Applications/FontEditor/GlyphMapWidget.cpp @@ -41,6 +41,8 @@ void GlyphMapWidget::resize_event(GUI::ResizeEvent& event) int content_height = rows() * (font().glyph_height() + m_vertical_spacing) + frame_thickness(); set_content_size({ content_width, content_height }); + scroll_to_glyph(m_selected_glyph); + AbstractScrollableWidget::resize_event(event); }