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

LibGUI: Move ListView to using AbstractView::move_cursor()

This commit is contained in:
Andreas Kling 2020-09-02 21:15:26 +02:00
parent c840c47c13
commit 274a09246b
3 changed files with 83 additions and 79 deletions

View file

@ -57,10 +57,11 @@ public:
virtual void select_all() override;
void move_selection(int steps);
Function<void()> on_escape_pressed;
virtual void move_cursor(CursorMovement, SelectionUpdate) override;
void move_cursor_relative(int steps, SelectionUpdate);
private:
ListView();