From b6261041f6149922cdc38a1b5cf3b435acbfaf97 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Thu, 6 Aug 2020 17:41:32 +1000 Subject: [PATCH] Fix being too much padding between entries in launcher servers list (thanks Daeslender) --- src/LWidgets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LWidgets.c b/src/LWidgets.c index 1be382b23..5f5c1b421 100644 --- a/src/LWidgets.c +++ b/src/LWidgets.c @@ -1095,7 +1095,7 @@ static void LTable_StopDragging(void* widget) { void LTable_Reposition(struct LTable* w) { int rowsHeight; w->hdrHeight = Drawer2D_FontHeight(&Launcher_TextFont, true) + hdrYPadding; - w->rowHeight = Drawer2D_FontHeight(w->rowFont, true) + hdrYPadding; + w->rowHeight = Drawer2D_FontHeight(w->rowFont, true) + rowYPadding; w->rowsBegY = w->y + w->hdrHeight + gridlineHeight; w->rowsEndY = w->y + w->height;