diff options
author | Mustafa Quraish <mustafaq9@gmail.com> | 2021-08-31 22:16:53 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-04 03:35:23 +0200 |
commit | 30ce1d856292a025b5f0e1fd1e4ddbbd6991b8c5 (patch) | |
tree | 1e128afcd24a92536ef0f64461cfabef902528af /Userland/Libraries/LibGfx/StandardCursor.h | |
parent | 81326ac8c79f97d352818ecb4381ba2d167280d5 (diff) | |
download | serenity-30ce1d856292a025b5f0e1fd1e4ddbbd6991b8c5.zip |
Cursors: Add new Eyedropper cursor
This can be used immediately in PixelPaint (separate commit), but
I am adding this as a system-wide cursor since it may also be useful
for other applications that want to use it.
Diffstat (limited to 'Userland/Libraries/LibGfx/StandardCursor.h')
-rw-r--r-- | Userland/Libraries/LibGfx/StandardCursor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibGfx/StandardCursor.h b/Userland/Libraries/LibGfx/StandardCursor.h index 52c4ab84d8..1e15852dbf 100644 --- a/Userland/Libraries/LibGfx/StandardCursor.h +++ b/Userland/Libraries/LibGfx/StandardCursor.h @@ -26,6 +26,7 @@ enum class StandardCursor { Move, Wait, Disallowed, + Eyedropper, __Count, }; |