mirror of
https://github.com/RGBCube/serenity
synced 2025-05-23 18:55:08 +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
|
@ -1343,7 +1343,7 @@ void TextEditor::enter_event(Core::Event&)
|
|||
{
|
||||
ASSERT(window());
|
||||
if (!is_displayonly())
|
||||
window()->set_override_cursor(Gfx::StandardCursor::IBeam);
|
||||
window()->set_cursor(Gfx::StandardCursor::IBeam);
|
||||
|
||||
m_automatic_selection_scroll_timer->stop();
|
||||
}
|
||||
|
@ -1351,7 +1351,7 @@ void TextEditor::enter_event(Core::Event&)
|
|||
void TextEditor::leave_event(Core::Event&)
|
||||
{
|
||||
ASSERT(window());
|
||||
window()->set_override_cursor(Gfx::StandardCursor::None);
|
||||
window()->set_cursor(Gfx::StandardCursor::None);
|
||||
|
||||
if (m_in_drag_select)
|
||||
m_automatic_selection_scroll_timer->start();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue