From e3b4a1c700b8e65ef8af22d1975b426709006cd2 Mon Sep 17 00:00:00 2001 From: speedie Date: Fri, 3 Mar 2023 17:22:19 +0100 Subject: [PATCH] fix: imagegaps not applied to the right side of the image --- libs/draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/draw.c b/libs/draw.c index 34c81f0..472acda 100644 --- a/libs/draw.c +++ b/libs/draw.c @@ -178,7 +178,7 @@ drawmenu(void) #if USEIMAGE if (!hideimage && longestedge != 0) { x = ox; - x += imagegaps + imagewidth; + x += (imagegaps * 2) + imagewidth; } #endif