1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 18:08:12 +00:00

LibGUI: Allow moving the TableView selection horizontally with keyboard

This commit is contained in:
Andreas Kling 2020-08-24 21:02:46 +02:00
parent e5a6e297bf
commit 2cbe290930
3 changed files with 13 additions and 5 deletions

View file

@ -78,7 +78,7 @@ public:
virtual void select_all() override;
void move_selection(int steps);
void move_selection(int vertical_steps, int horizontal_steps);
protected:
virtual ~AbstractTableView() override;