diff options
-rw-r--r-- | chrome/browser/resources/options/language_options.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/resources/options/language_options.js b/chrome/browser/resources/options/language_options.js index 9f6e793..13a1d52 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 |