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

Unified Diff: chrome/browser/resources/print_preview/margin_settings.js

Issue 8590014: PrintPreview: Fix a regression caused by r110055. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/print_preview/margin_settings.js
diff --git a/chrome/browser/resources/print_preview/margin_settings.js b/chrome/browser/resources/print_preview/margin_settings.js
index 8d8e67c861302f9fe4d9e9c01fda466b445624bc..1bfed187a0a908c88905392414c3b1bfa14fe1cd 100644
--- a/chrome/browser/resources/print_preview/margin_settings.js
+++ b/chrome/browser/resources/print_preview/margin_settings.js
@@ -51,8 +51,8 @@ cr.define('print_preview', function() {
},
clone: function() {
- return new Margins(this[MarginSettings.TOP_GROUP],
- this[MarginSettings.LEFT_GROUP],
+ return new Margins(this[MarginSettings.LEFT_GROUP],
+ this[MarginSettings.TOP_GROUP],
this[MarginSettings.RIGHT_GROUP],
this[MarginSettings.BOTTOM_GROUP]);
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698