summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/AbstractTableView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibGUI/AbstractTableView.cpp')
-rw-r--r--Libraries/LibGUI/AbstractTableView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGUI/AbstractTableView.cpp b/Libraries/LibGUI/AbstractTableView.cpp
index d05ee42f1d..e254510c60 100644
--- a/Libraries/LibGUI/AbstractTableView.cpp
+++ b/Libraries/LibGUI/AbstractTableView.cpp
@@ -295,7 +295,7 @@ void AbstractTableView::mousemove_event(MouseEvent& event)
bool found_hovered_header = false;
for (int i = 0; i < column_count; ++i) {
if (column_resize_grabbable_rect(i).contains(horizontally_adjusted_position)) {
- window()->set_override_cursor(StandardCursor::ResizeHorizontal);
+ window()->set_override_cursor(StandardCursor::ResizeColumn);
set_hovered_header_index(-1);
return;
}