From 724f40f52ce278fb3ac54e172db244111d5b4592 Mon Sep 17 00:00:00 2001 From: Ross Gouldthorpe Date: Wed, 4 Dec 2024 13:11:26 +0000 Subject: [PATCH] Update favorite.c Giving a bit more space between the lines of history --- src/menu/views/favorite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/menu/views/favorite.c b/src/menu/views/favorite.c index 9c036847..ff29dac2 100644 --- a/src/menu/views/favorite.c +++ b/src/menu/views/favorite.c @@ -96,7 +96,7 @@ static void draw_favorites(menu_t *menu, surface_t *display) { if(path_has_value(menu->history.favorites_disk[i])) { ui_components_main_text_draw_location(x + 64, y,"%s", path_last_get(menu->history.favorites_disk[i])); } - y += 16; + y += 20; } }