mirror of
https://github.com/RGBCube/serenity
synced 2025-07-02 23:22:07 +00:00
LibGUI+WindowServer: Rename window "override cursor" to just "cursor"
Let's just say each window has a cursor, there's not really overriding going on.
This commit is contained in:
parent
40fbdd4e9e
commit
b4f307f982
21 changed files with 80 additions and 80 deletions
|
@ -112,13 +112,13 @@ void ResizeCorner::mousedown_event(MouseEvent& event)
|
|||
|
||||
void ResizeCorner::enter_event(Core::Event& event)
|
||||
{
|
||||
window()->set_override_cursor(Gfx::StandardCursor::ResizeDiagonalTLBR);
|
||||
window()->set_cursor(Gfx::StandardCursor::ResizeDiagonalTLBR);
|
||||
Widget::enter_event(event);
|
||||
}
|
||||
|
||||
void ResizeCorner::leave_event(Core::Event& event)
|
||||
{
|
||||
window()->set_override_cursor(Gfx::StandardCursor::None);
|
||||
window()->set_cursor(Gfx::StandardCursor::None);
|
||||
Widget::leave_event(event);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue