diff options
author | dec05eba <dec05eba@protonmail.com> | 2022-04-11 05:32:49 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2022-04-11 05:32:49 +0200 |
commit | ad4265cd01b4cda3823d05d66daaf997fdef4559 (patch) | |
tree | 0e7188078759fa5009986f1b5bc84014323bc261 /src | |
parent | 08cef1dc766830825f9f25591fb70d0b360d6304 (diff) |
4chan: fix thumbnail size changing when going to thread and then viewing an image and going back
Diffstat (limited to 'src')
-rw-r--r-- | src/QuickMedia.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/QuickMedia.cpp b/src/QuickMedia.cpp index b83f64a..e8fee28 100644 --- a/src/QuickMedia.cpp +++ b/src/QuickMedia.cpp @@ -2030,6 +2030,8 @@ namespace QuickMedia { return false; } + AsyncImageLoader::get_instance().update(); + malloc_trim(0); idle_active_handler(); @@ -4304,6 +4306,8 @@ namespace QuickMedia { } void Program::image_board_thread_page(ImageBoardThreadPage *thread_page, Body *thread_body) { + AsyncImageLoader::get_instance().update(); + // TODO: Instead of using stage here, use different pages for each stage enum class NavigationStage { VIEWING_COMMENTS, |