Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Antalik <richardantalik@gmail.com>2021-12-06 18:59:17 +0300
committerRichard Antalik <richardantalik@gmail.com>2021-12-06 19:01:51 +0300
commit7d1a10a9bbf38cca571f56d32c799d9740d07423 (patch)
tree7292c6bae0cc59c80db92835555792929aa0f5d1
parenta5e389985361618a121814ae9c6c9f13736cdf19 (diff)
Fix T93314: Thumbnails not drawn with default scale
Decrease threshold for drawing thumbnails. This was unintended change in daaa43232d34 that was overlooked.
-rw-r--r--source/blender/editors/space_sequencer/sequencer_thumbnails.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_thumbnails.c b/source/blender/editors/space_sequencer/sequencer_thumbnails.c
index fe9cd44c5df..c6fecdb1fc6 100644
--- a/source/blender/editors/space_sequencer/sequencer_thumbnails.c
+++ b/source/blender/editors/space_sequencer/sequencer_thumbnails.c
@@ -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;
}