LibGUI: Add GScrollableWidget::scroll_to_bottom/top().

This commit is contained in:
Andreas Kling 2019-03-19 03:09:21 +01:00
commit 9551e2e4b5
Notes: sideshowbarker 2024-07-19 15:00:19 +09:00
2 changed files with 13 additions and 0 deletions

View file

@ -27,6 +27,9 @@ public:
GWidget& corner_widget() { return *m_corner_widget; }
const GWidget& corner_widget() const { return *m_corner_widget; }
void scroll_to_top();
void scroll_to_bottom();
virtual const char* class_name() const override { return "GScrollableWidget"; }
protected: