1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:47:35 +00:00

LibGUI: Implement calculated_min_size() for SpinBox

This commit is contained in:
thankyouverycool 2023-04-16 16:04:13 -04:00 committed by Andreas Kling
parent b66a76f73b
commit 33ccbc9415
2 changed files with 12 additions and 2 deletions

View file

@ -34,6 +34,7 @@ protected:
virtual void mousewheel_event(MouseEvent&) override;
virtual void resize_event(ResizeEvent&) override;
virtual Optional<UISize> calculated_min_size() const override;
private:
RefPtr<TextEditor> m_editor;