| Index: chrome/browser/resources/options/chromeos/display_options.js
|
| diff --git a/chrome/browser/resources/options/chromeos/display_options.js b/chrome/browser/resources/options/chromeos/display_options.js
|
| index bd080d21df7345cdc530699517a960a07c10293d..462b84f2f0e33542230166519a73a0af3e8c059c 100644
|
| --- a/chrome/browser/resources/options/chromeos/display_options.js
|
| +++ b/chrome/browser/resources/options/chromeos/display_options.js
|
| @@ -375,8 +375,8 @@ cr.define('options', function() {
|
| } else {
|
| offset = secondary.div.offsetLeft - primary.div.offsetLeft;
|
| }
|
| - chrome.send('setDisplayLayout',
|
| - [this.layout_, offset / this.visualScale_]);
|
| + offset = Math.floor(offset / this.visualScale_);
|
| + chrome.send('setDisplayLayout', [secondary.id, this.layout_, offset]);
|
| },
|
|
|
| /**
|
|
|