Fix T93314: Thumbnails not drawn with default scale

Decrease threshold for drawing thumbnails.

This was unintended change in daaa43232d that was overlooked.
This commit is contained in:
Richard Antalik 2021-12-06 16:59:17 +01:00
parent a5e3899853
commit 7d1a10a9bb
Notes: blender-bot 2023-02-13 17:02:52 +01:00
Referenced by issue #99091, Regression: VSE freeze when changing the source of an image with thumbnails enabled
Referenced by issue #93479, 3.0 Potential candidates for corrective releases
Referenced by issue #93314, Video editor thumbnails don't show at the default zoom level
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ void draw_seq_strip_thumbnail(View2D *v2d,
rcti crop;
/* If width of the strip too small ignore drawing thumbnails. */
if ((y2 - y1) / pixely <= 40 * U.dpi_fac) {
if ((y2 - y1) / pixely <= 20 * U.dpi_fac) {
return;
}