Fix Spell Checker layout padding

- update padding layout for being consistent with the rest of the Settings App

See bug: #15384992 Setting Dashboard - padding updates

Change-Id: I37ce631425b3e075f4a5d44a41c6a3bac7607a3d
This commit is contained in:
Fabrice Di Meglio
2014-06-18 16:25:33 -07:00
parent 0ec4251d12
commit e4f58f9c52
3 changed files with 19 additions and 3 deletions

View File

@@ -90,7 +90,7 @@ public class SpellCheckersSettings extends SettingsPreferenceFragment
for (int i = 0; i < mEnabledScis.length; ++i) {
final SpellCheckerInfo sci = mEnabledScis[i];
final SingleSpellCheckerPreference scPref = new SingleSpellCheckerPreference(
this, null, sci, mTsm);
this, sci, mTsm);
mSpellCheckers.add(scPref);
scPref.setTitle(sci.loadLabel(pm));
scPref.setSelected(mCurrentSci != null && mCurrentSci.getId().equals(sci.getId()));