mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 09:24:57 +00:00
LibGUI: Use Resize{Column,Row} cursor for Splitter and AbstractTableView
This commit is contained in:
parent
62866208ee
commit
b86a59ec05
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue