fixed description in CMakeLists.txt and fixed negative hsv

This commit is contained in:
Sepandar 2025-02-12 23:05:16 -08:00
parent c3777320b3
commit e6c9a516f8
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ string(STRIP ${VER_RAW} VERSION)
project(
hyprpicker
DESCRIPTION "A blazing fast wayland wallpaper utility"
DESCRIPTION "A wlroots-compatible Wayland color picker that does not suck"
VERSION ${VERSION})
set(CMAKE_MESSAGE_LOG_LEVEL "STATUS")

View file

@ -721,7 +721,7 @@ void CHyprpicker::initMouse() {
l_or_v = std::round(v * 100);
}
h = std::round(h);
h = std::round(h<0?h+360:h);
s = std::round(s * 100);
if (m_bFancyOutput)