Fix being too much padding between entries in launcher servers list (thanks Daeslender)

This commit is contained in:
UnknownShadow200 2020-08-06 17:41:32 +10:00
parent 7abb4e8819
commit b6261041f6

View File

@ -1095,7 +1095,7 @@ static void LTable_StopDragging(void* widget) {
void LTable_Reposition(struct LTable* w) { void LTable_Reposition(struct LTable* w) {
int rowsHeight; int rowsHeight;
w->hdrHeight = Drawer2D_FontHeight(&Launcher_TextFont, true) + hdrYPadding; 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->rowsBegY = w->y + w->hdrHeight + gridlineHeight;
w->rowsEndY = w->y + w->height; w->rowsEndY = w->y + w->height;