| Index: ui/file_manager/file_manager/foreground/js/ui/file_grid.js
|
| diff --git a/ui/file_manager/file_manager/foreground/js/ui/file_grid.js b/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
|
| index a7983a6babcf727b6c1a6b72ce0dd4c03b323259..fcad3f1cd5c8e585780fbd3575821e5219421e71 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/ui/file_grid.js
|
| @@ -105,7 +105,7 @@ FileGrid.prototype.updateListItemsMetadata = function(type, entries) {
|
| this.metadataCache_,
|
| this.volumeManager_,
|
| this.historyLoader_,
|
| - ThumbnailLoader.FillMode.AUTO,
|
| + ThumbnailLoader.FillMode.FILL,
|
| FileGrid.ThumbnailQuality.LOW,
|
| /* animation */ false);
|
| }
|
| @@ -181,12 +181,16 @@ FileGrid.decorateThumbnail = function(
|
| metadataCache,
|
| volumeManager,
|
| historyLoader,
|
| - ThumbnailLoader.FillMode.AUTO,
|
| + ThumbnailLoader.FillMode.FILL,
|
| FileGrid.ThumbnailQuality.LOW,
|
| /* animation */ !previousBox);
|
| }
|
| frame.appendChild(box);
|
|
|
| + var checkmark = li.ownerDocument.createElement('div');
|
| + checkmark.className = 'checkmark';
|
| + frame.appendChild(checkmark);
|
| +
|
| var bottom = li.ownerDocument.createElement('div');
|
| bottom.className = 'thumbnail-bottom';
|
| var badge = li.ownerDocument.createElement('div');
|
|
|