diff options
Diffstat (limited to 'Userland/Libraries/LibGUI/AbstractTableView.h')
-rw-r--r-- | Userland/Libraries/LibGUI/AbstractTableView.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGUI/AbstractTableView.h b/Userland/Libraries/LibGUI/AbstractTableView.h index 4bfa470027..916ecf05c2 100644 --- a/Userland/Libraries/LibGUI/AbstractTableView.h +++ b/Userland/Libraries/LibGUI/AbstractTableView.h @@ -100,6 +100,8 @@ protected: void move_cursor_relative(int vertical_steps, int horizontal_steps, SelectionUpdate); + virtual Gfx::IntPoint automatic_scroll_delta_from_position(const Gfx::IntPoint& pos) const override; + private: void layout_headers(); bool is_navigation(GUI::KeyEvent&); |