mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-23 22:29:49 +01:00
config: fix float animation speeds < 0 (#9123)
This commit is contained in:
parent
407453166c
commit
2d82a92324
1 changed files with 1 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Reference in a new issue