1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:17:44 +00:00

LibGUI: Implement calculated_min_size() for GlyphMapWidget

This commit is contained in:
thankyouverycool 2022-12-15 19:48:06 -05:00 committed by Andreas Kling
parent c4ac73d073
commit 0f5ce017c5
2 changed files with 9 additions and 0 deletions

View file

@ -88,6 +88,7 @@ private:
virtual void resize_event(ResizeEvent&) override;
virtual void did_change_font() override;
virtual void context_menu_event(ContextMenuEvent&) override;
virtual Optional<UISize> calculated_min_size() const override;
Gfx::IntRect get_outer_rect(int glyph) const;
Optional<int> glyph_at_position(Gfx::IntPoint) const;