diff options
Diffstat (limited to 'LibGUI/GAbstractView.h')
-rw-r--r-- | LibGUI/GAbstractView.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/LibGUI/GAbstractView.h b/LibGUI/GAbstractView.h index f0c33c5bd9..ac019a673e 100644 --- a/LibGUI/GAbstractView.h +++ b/LibGUI/GAbstractView.h @@ -29,10 +29,13 @@ public: protected: virtual void model_notification(const GModelNotification&); + virtual void did_scroll() override; + void update_edit_widget_position(); bool m_editable { false }; GModelIndex m_edit_index; GTextBox* m_edit_widget { nullptr }; + Rect m_edit_widget_content_rect; private: RetainPtr<GModel> m_model; |