config: fix float animation speeds < 0 (#9123)

This commit is contained in:
Maximilian Seidler 2025-01-20 16:48:04 +00:00 committed by GitHub
parent 407453166c
commit 2d82a92324
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2083,7 +2083,7 @@ std::optional<std::string> CConfigManager::handleAnimation(const std::string& co
return {};
}
int64_t speed = -1;
float speed = -1;
// speed
if (isNumber(ARGS[2], true)) {