Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
file: support HiDpi for thumbnails images
This was missing from the last commit.

origin commit:
https://gitlab.gnome.org/GNOME/nautilus/commit/b3b4bea5
  • Loading branch information
cosimoc authored and lukefromdc committed Apr 5, 2018
1 parent c0d60fc commit 47246e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libcaja-private/caja-file.c
Expand Up @@ -4322,9 +4322,9 @@ caja_file_get_icon (CajaFile *file,
}

if (flags & CAJA_FILE_ICON_FLAGS_FORCE_THUMBNAIL_SIZE) {
modified_size = size;
modified_size = size * scale;
} else {
modified_size = size * cached_thumbnail_size / CAJA_ICON_SIZE_STANDARD;
modified_size = size * scale * cached_thumbnail_size / CAJA_ICON_SIZE_STANDARD;
}
if (flags & CAJA_FILE_ICON_FLAGS_USE_THUMBNAILS &&
caja_file_should_show_thumbnail (file)) {
Expand Down Expand Up @@ -4370,7 +4370,7 @@ caja_file_get_icon (CajaFile *file,
image instead. We don't want to compare to exactly 100%,
since the zoom level 150% gives thumbnails at 144, which is
ok to scale up from 128. */
if (modified_size > 128*1.25 &&
if (modified_size > 128 * 1.25 * scale &&
!file->details->thumbnail_wants_original &&
caja_can_thumbnail_internally (file)) {
/* Invalidate if we resize upward */
Expand Down

0 comments on commit 47246e2

Please sign in to comment.