| Index: chrome/browser/resources/options/language_options.js
|
| ===================================================================
|
| --- chrome/browser/resources/options/language_options.js (revision 114396)
|
| +++ chrome/browser/resources/options/language_options.js (working copy)
|
| @@ -93,11 +93,8 @@
|
| $('auto-spell-correction-option').hidden = false;
|
|
|
| // Handle spell check enable/disable.
|
| - if (!cr.isMac) {
|
| - Preferences.getInstance().addEventListener(
|
| - this.enableSpellCheckPref,
|
| - this.updateEnableSpellCheck_.bind(this));
|
| - }
|
| + Preferences.getInstance().addEventListener(this.enableSpellCheckPref,
|
| + this.updateEnableSpellCheck_.bind(this));
|
| }
|
|
|
| // Listen to user clicks on the "Change touch keyboard settings..."
|
| @@ -222,8 +219,7 @@
|
| this.updateSelectedLanguageName_(languageCode);
|
| if (cr.isWindows || cr.isChromeOS)
|
| this.updateUiLanguageButton_(languageCode);
|
| - if (!cr.isMac)
|
| - this.updateSpellCheckLanguageButton_(languageCode);
|
| + this.updateSpellCheckLanguageButton_(languageCode);
|
| if (cr.isChromeOS)
|
| this.updateInputMethodList_(languageCode);
|
| this.updateLanguageListInAddLanguageOverlay_();
|
|
|