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

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

Issue 15675007: Suppressed resizing when the preview panel shows and hides. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/js/file_manager.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/file_selection.js
diff --git a/chrome/browser/resources/file_manager/js/file_selection.js b/chrome/browser/resources/file_manager/js/file_selection.js
index 88c5c15ea925060dd9538b63763b61d29dbb2493..e72d71afb11219f8fe5de57f3dae41d76cc8963b 100644
--- a/chrome/browser/resources/file_manager/js/file_selection.js
+++ b/chrome/browser/resources/file_manager/js/file_selection.js
@@ -335,14 +335,12 @@ FileSelectionHandler.prototype.updatePreviewPanelVisibility_ = function() {
self.hidingTimeout_ = setTimeout(function() {
self.hidingTimeout_ = 0;
setVisibility('hidden');
- fm.onResize_();
}, 250);
};
var show = function() {
setVisibility('visible');
self.previewThumbnails_.textContent = '';
- fm.onResize_();
};
var setVisibility = function(visibility) {
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698