From 897ba49e7a3991aa592fbf9dc81c0910abd7d3ae Mon Sep 17 00:00:00 2001 From: Simon Long Date: Mon, 13 May 2024 09:47:15 +0100 Subject: [PATCH] Use set_float --- src/theme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme.c b/src/theme.c index eb1399d6..a3a18e34 100644 --- a/src/theme.c +++ b/src/theme.c @@ -855,7 +855,7 @@ entry(struct theme *theme, const char *key, const char *value) theme->mag_filter = atoi(value); } if (match_glob(key, "magnifier.increment")) { - theme->mag_increment = atof(value); + set_float(value, &theme->mag_increment); } }