From fdce53681d85e49bfadfe00877a0f6228154010d Mon Sep 17 00:00:00 2001 From: speedie Date: Mon, 12 Jun 2023 00:30:53 +0200 Subject: [PATCH] Fix typo causing gaps to set the image height in the configuration file --- libs/conf/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/conf/config.c b/libs/conf/config.c index 6e7249d..8e3d8ac 100644 --- a/libs/conf/config.c +++ b/libs/conf/config.c @@ -411,7 +411,7 @@ void conf_init(void) { config_setting_lookup_int(conf, "width", &imagewidth); // spmenu.image.width config_setting_lookup_int(conf, "height", &imageheight); // spmenu.image.height config_setting_lookup_int(conf, "resize", &imageresize); // spmenu.image.resize - config_setting_lookup_int(conf, "gaps", &imageheight); // spmenu.image.gaps + config_setting_lookup_int(conf, "gaps", &imagegaps); // spmenu.image.gaps config_setting_lookup_int(conf, "position", &imageposition); // spmenu.image.position config_setting_lookup_int(conf, "cache", &generatecache); // spmenu.image.cache config_setting_lookup_int(conf, "maxcache", &maxcache); // spmenu.image.maxcache