diff options
author | Mustafa Quraish <mustafaq9@gmail.com> | 2021-08-31 22:19:31 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-09-04 03:35:23 +0200 |
commit | 30e91ecff6d1e5ad033a92983502315710392041 (patch) | |
tree | 06ac5435d0a9da71edcaf5a4802e0c066e2f2e54 /Userland/Libraries | |
parent | 30ce1d856292a025b5f0e1fd1e4ddbbd6991b8c5 (diff) | |
download | serenity-30e91ecff6d1e5ad033a92983502315710392041.zip |
Cursors: Add new Magnifying glass cursor
There are a few places in the system where this could be useful,
such as PixelPaint and the MandelBrot demo. It seems general enough
that it is probably useful to have it as a system-wide cursor rather
than loading it manually each time.
Diffstat (limited to 'Userland/Libraries')
-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 1e15852dbf..9a8a9c97b6 100644 --- a/Userland/Libraries/LibGfx/StandardCursor.h +++ b/Userland/Libraries/LibGfx/StandardCursor.h @@ -27,6 +27,7 @@ enum class StandardCursor { Wait, Disallowed, Eyedropper, + Zoom, __Count, }; |