We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc26d10 commit 142ca4bCopy full SHA for 142ca4b
Userland/Libraries/LibGfx/StandardCursor.h
@@ -45,6 +45,7 @@ enum class StandardCursor {
45
Drag,
46
Move,
47
Wait,
48
+ Disallowed,
49
__Count,
50
};
51
Userland/Services/WindowServer/Cursor.cpp
@@ -181,6 +181,8 @@ RefPtr<Cursor> Cursor::create(Gfx::StandardCursor standard_cursor)
181
return WindowManager::the().move_cursor();
182
case Gfx::StandardCursor::Wait:
183
return WindowManager::the().wait_cursor();
184
+ case Gfx::StandardCursor::Disallowed:
185
+ return WindowManager::the().disallowed_cursor();
186
default:
187
VERIFY_NOT_REACHED();
188
}
0 commit comments