summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/AbstractTableView.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-08-24 21:02:46 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-24 21:03:34 +0200
commit2cbe29093083ccdcaf917d57e378749885f19cad (patch)
treee316c821c2ecc58f44582c94becdcd76ebd16c33 /Libraries/LibGUI/AbstractTableView.h
parente5a6e297bfbbe158a00fd4c76366fed852be29df (diff)
downloadserenity-2cbe29093083ccdcaf917d57e378749885f19cad.zip
LibGUI: Allow moving the TableView selection horizontally with keyboard
Diffstat (limited to 'Libraries/LibGUI/AbstractTableView.h')
-rw-r--r--Libraries/LibGUI/AbstractTableView.h2
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;