| Index: chrome/browser/resources/options/language_options.js
|
| diff --git a/chrome/browser/resources/options/language_options.js b/chrome/browser/resources/options/language_options.js
|
| index 9f6e793cd89fcacc42ce2c95201114d7de934a11..13a1d52e537b48c78663593d821ee56475b7020c 100644
|
| --- a/chrome/browser/resources/options/language_options.js
|
| +++ b/chrome/browser/resources/options/language_options.js
|
| @@ -136,7 +136,10 @@ cr.define('options', function() {
|
| this.handleCheckboxClick_.bind(this));
|
| var label = document.createElement('label');
|
| label.appendChild(input);
|
| - label.appendChild(document.createTextNode(inputMethod.displayName));
|
| + // Adding a space between the checkbox and the text. This is a bit
|
| + // dirty, but we rely on a space character for all other checkboxes.
|
| + label.appendChild(document.createTextNode(
|
| + ' ' + inputMethod.displayName));
|
| label.style.display = 'none';
|
| label.languageCodeSet = inputMethod.languageCodeSet;
|
| // Add the configure button if the config page is present for this
|
|
|