diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Body.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Body.hpp b/include/Body.hpp index 4887582..35b3f30 100644 --- a/include/Body.hpp +++ b/include/Body.hpp @@ -124,6 +124,7 @@ namespace QuickMedia { void set_page_scroll(float scroll) { page_scroll = scroll; } float get_page_scroll() const { return page_scroll; } + bool is_last_item_fully_visible() const { return last_item_fully_visible; } sf::Font *font; sf::Font *bold_font; @@ -168,5 +169,6 @@ namespace QuickMedia { sf::Sprite image; std::future<void> load_thumbnail_future; int num_visible_items; + bool last_item_fully_visible; }; }
\ No newline at end of file |