From b1349e2e27e2fd2841689fdd9b887ea8b1539e60 Mon Sep 17 00:00:00 2001 From: johannes hanika Date: Sat, 28 Sep 2024 15:04:32 +0200 Subject: [PATCH] lighttable: streamline keyboard nav --- src/gui/render_lighttable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/render_lighttable.c b/src/gui/render_lighttable.c index 98a5e7b9..12bf0015 100644 --- a/src/gui/render_lighttable.c +++ b/src/gui/render_lighttable.c @@ -295,7 +295,7 @@ void render_lighttable_center() g_scroll_colid = -1; } } - if(row.y + row.h < content.y || + if(row.y + row.h <= content.y || row.y > content.y + content.h) { // add dummy for invisible thumbnails nk_label(&vkdt.ctx, "", 0);