Skip to content

Commit

Permalink
Couple fixes for thumbnail issue - problem was still occuring in 1.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwebster committed Jul 21, 2013
1 parent 4df4e1e commit 04c11ef
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions libnemo-private/nemo-file.c
Expand Up @@ -2147,8 +2147,6 @@ update_info_internal (NemoFile *file,

file->details->file_info_is_up_to_date = TRUE;

file->details->thumbnail_try_count = 0;

/* FIXME bugzilla.gnome.org 42044: Need to let links that
* point to the old name know that the file has been renamed.
*/
Expand Down Expand Up @@ -4293,7 +4291,7 @@ nemo_file_get_icon (NemoFile *file,
file->details->can_read &&
!file->details->is_thumbnailing &&
!file->details->thumbnailing_failed &&
file->details->thumbnail_try_count <= MAX_THUMBNAIL_TRIES) {
file->details->thumbnail_try_count < MAX_THUMBNAIL_TRIES) {
if (nemo_can_thumbnail (file)) {
nemo_create_thumbnail (file);
}
Expand Down

0 comments on commit 04c11ef

Please sign in to comment.