FileBrowser: Always do full cache refresh while we are still listing...

Does not seem to be a problem with embeded filelisting code, but was breaking with some experimental asset engines.
This commit is contained in:
Bastien Montagne 2016-09-13 19:02:27 +02:00
parent 0de69e56b4
commit a2677100fe
Notes: blender-bot 2023-02-14 07:36:18 +01:00
Referenced by commit 51e8c167f4, Fix T49352: Blender's file browser do not display previews.
Referenced by issue #49506, Theme File Browser
Referenced by issue #49354, Voronoi texture incorrectly displayed in the viewport Cycles
Referenced by issue #49355, Musgrave texture incorrectly displayed in the viewport Cycles
Referenced by issue #49356, Display mode thumbnails
Referenced by issue #49352, Blender's file browser do not display previews.
Referenced by issue #49353, Noise texture incorrectly displayed in the viewport Cycles
1 changed files with 3 additions and 2 deletions

View File

@ -1651,6 +1651,7 @@ bool filelist_file_cache_block(struct FileList *filelist, const int index)
int start_index = max_ii(0, index - (cache_size / 2));
int end_index = min_ii(nbr_entries, index + (cache_size / 2));
int i;
const bool full_refresh = (filelist->flags & FL_IS_READY) != 0;
if ((index < 0) || (index >= nbr_entries)) {
// printf("Wrong index %d ([%d:%d])", index, 0, nbr_entries);
@ -1673,8 +1674,8 @@ bool filelist_file_cache_block(struct FileList *filelist, const int index)
// start_index, end_index, index, cache->block_start_index, cache->block_end_index);
/* If we have something to (re)cache... */
if ((start_index != cache->block_start_index) || (end_index != cache->block_end_index)) {
if ((start_index >= cache->block_end_index) || (end_index <= cache->block_start_index)) {
if (full_refresh || (start_index != cache->block_start_index) || (end_index != cache->block_end_index)) {
if (full_refresh || (start_index >= cache->block_end_index) || (end_index <= cache->block_start_index)) {
int size1 = cache->block_end_index - cache->block_start_index;
int size2 = 0;
int idx1 = cache->block_cursor, idx2 = 0;