mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
LibGUI: Use Resize{Column,Row} cursor for Splitter and AbstractTableView
This commit is contained in:
committed by
Andreas Kling
parent
62866208ee
commit
b86a59ec05
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user