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

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

Issue 11788026: Fixed flickering "Computing selection" label. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Polished. Created 7 years, 11 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/js/mock_chrome.js ('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/selection.js
diff --git a/chrome/browser/resources/file_manager/js/selection.js b/chrome/browser/resources/file_manager/js/selection.js
index 2b2e6b3d2dbffef747072f9aaf9b724e5ae22e79..3f53bc914c17681d7ec94c6bc29129431ad3071e 100644
--- a/chrome/browser/resources/file_manager/js/selection.js
+++ b/chrome/browser/resources/file_manager/js/selection.js
@@ -191,10 +191,6 @@ SelectionHandler.prototype.onSelectionChanged = function(event) {
if (this.selectionUpdateTimer_) {
clearTimeout(this.selectionUpdateTimer_);
this.selectionUpdateTimer_ = null;
-
- // The selection is changing quicker than we can update the UI.
- // Clear the UI.
- this.clearUI();
}
if (!indexes.length) {
@@ -204,7 +200,6 @@ SelectionHandler.prototype.onSelectionChanged = function(event) {
return;
}
- this.previewText_.textContent = str('COMPUTING_SELECTION');
this.hideCalculating_();
// The rest of the selection properties are computed via (sometimes lengthy)
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698