Skip to content

Commit

Permalink
lighttable: streamline keyboard nav
Browse files Browse the repository at this point in the history
  • Loading branch information
hanatos committed Sep 28, 2024
1 parent 9a47b15 commit b1349e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/render_lighttable.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b1349e2

Please sign in to comment.