mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:07:34 +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
|
@ -60,7 +60,7 @@ void Splitter::resize_event(ResizeEvent& event)
|
|||
|
||||
void Splitter::enter_event(Core::Event&)
|
||||
{
|
||||
window()->set_override_cursor(m_orientation == Orientation::Horizontal ? StandardCursor::ResizeHorizontal : StandardCursor::ResizeVertical);
|
||||
window()->set_override_cursor(m_orientation == Orientation::Horizontal ? StandardCursor::ResizeColumn : StandardCursor::ResizeRow);
|
||||
}
|
||||
|
||||
void Splitter::leave_event(Core::Event&)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue