when using SETM thumbs are recomputed when switching between File browser and Editor (Filmstrip) even if SameThumbSize=1 in preferences, fixes #4194. Thanks to @Hombre57 for the fix

This commit is contained in:
heckflosse
2017-11-22 01:32:39 +01:00
parent d31aca2e6a
commit 4bad4df2d7

View File

@@ -462,7 +462,7 @@ void ThumbBrowserEntryBase::resize (int h)
width = bsw + 2 * sideMargin + 2 * borderWidth;
}
if ( preh != old_preh || width != old_width ) {
if (preh != old_preh) {
delete [] preview;
preview = nullptr;
refreshThumbnailImage ();