Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Unified Diff: chrome/browser/resources/file_manager/js/file_grid.js

Issue 15878007: Adjust the thumbnail view to match the specs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/file_manager/css/file_manager.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/js/file_grid.js
diff --git a/chrome/browser/resources/file_manager/js/file_grid.js b/chrome/browser/resources/file_manager/js/file_grid.js
index 55f1b76dc4cf92679c89a8ecaa95ec827dd1e651..2388ce0279f13e9486a9f68cca81251dd71189d3 100644
--- a/chrome/browser/resources/file_manager/js/file_grid.js
+++ b/chrome/browser/resources/file_manager/js/file_grid.js
@@ -173,7 +173,7 @@ FileGrid.Item.decorate = function(li, entry, grid) {
li.__proto__ = FileGrid.Item.prototype;
FileGrid.decorateThumbnail(li, entry, grid.metadataCache_, true);
- if (grid.selectionModel.multiple) {
+ if (!util.platform.newUI() && grid.selectionModel.multiple) {
var checkBox = li.ownerDocument.createElement('input');
filelist.decorateSelectionCheckbox(checkBox, entry, grid);
checkBox.classList.add('white');
« no previous file with comments | « chrome/browser/resources/file_manager/css/file_manager.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698