mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 06:48:49 +00:00
LibGUI: Use Resize{Column,Row} cursor for Splitter and AbstractTableView
This commit is contained in:
parent
62866208ee
commit
b86a59ec05
Notes:
sideshowbarker
2024-07-19 05:01:24 +09:00
Author: https://github.com/linusg
Commit: b86a59ec05
Pull-request: https://github.com/SerenityOS/serenity/pull/2739
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