summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/AbstractTableView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGUI/AbstractTableView.cpp')
-rw-r--r--Userland/Libraries/LibGUI/AbstractTableView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/AbstractTableView.cpp b/Userland/Libraries/LibGUI/AbstractTableView.cpp
index f3efa24bbb..52d92f4632 100644
--- a/Userland/Libraries/LibGUI/AbstractTableView.cpp
+++ b/Userland/Libraries/LibGUI/AbstractTableView.cpp
@@ -207,7 +207,7 @@ void AbstractTableView::mousedown_event(MouseEvent& event)
if (!model())
return AbstractView::mousedown_event(event);
- if (event.button() != MouseButton::Left)
+ if (event.button() != MouseButton::Primary)
return AbstractView::mousedown_event(event);
bool is_toggle;