1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:07:35 +00:00

Userland: Implement a magnifier app

This utility is useful for making sure those UI elements are pixel
perfect. A simple 2x/4x magnification around the mouse cursor, shown in
a window.
This commit is contained in:
Valtteri Koskivuori 2021-05-10 00:15:35 +03:00 committed by Linus Groh
parent 4864ef9440
commit 4d01183f5c
6 changed files with 183 additions and 0 deletions

View file

@ -0,0 +1,8 @@
set(SOURCES
MagnifierWidget.cpp
MagnifierWidget.h
main.cpp
)
serenity_app(Magnifier ICON find)
target_link_libraries(Magnifier LibGUI)