diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-24 21:02:46 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-24 21:03:34 +0200 |
commit | 2cbe29093083ccdcaf917d57e378749885f19cad (patch) | |
tree | e316c821c2ecc58f44582c94becdcd76ebd16c33 /Libraries/LibGUI/AbstractTableView.h | |
parent | e5a6e297bfbbe158a00fd4c76366fed852be29df (diff) | |
download | serenity-2cbe29093083ccdcaf917d57e378749885f19cad.zip |
LibGUI: Allow moving the TableView selection horizontally with keyboard
Diffstat (limited to 'Libraries/LibGUI/AbstractTableView.h')
-rw-r--r-- | Libraries/LibGUI/AbstractTableView.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/AbstractTableView.h b/Libraries/LibGUI/AbstractTableView.h index c405c64016..cfcbf7c9a7 100644 --- a/Libraries/LibGUI/AbstractTableView.h +++ b/Libraries/LibGUI/AbstractTableView.h @@ -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; |