summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/ColumnsView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGUI/ColumnsView.cpp')
-rw-r--r--Userland/Libraries/LibGUI/ColumnsView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibGUI/ColumnsView.cpp b/Userland/Libraries/LibGUI/ColumnsView.cpp
index d02898b345..3c6b086fa0 100644
--- a/Userland/Libraries/LibGUI/ColumnsView.cpp
+++ b/Userland/Libraries/LibGUI/ColumnsView.cpp
@@ -246,7 +246,7 @@ void ColumnsView::mousedown_event(MouseEvent& event)
if (!model())
return;
- if (event.button() != MouseButton::Left)
+ if (event.button() != MouseButton::Primary)
return;
auto index = index_at_event_position(event.position());