Fix SettingsPreferenceFragment.startFragment()

- was always passing R.string.lock_settings_picker_title as a title res

Change-Id: Iab47ef3da00e91d5ce3b6dc50c50c943bd78b08f
This commit is contained in:
Fabrice Di Meglio
2014-07-01 15:15:18 -07:00
parent d729029b90
commit 5bdf0423f9
5 changed files with 25 additions and 21 deletions

View File

@@ -235,7 +235,7 @@ public class InputMethodAndLanguageSettings extends SettingsPreferenceFragment
targetFragment = UserDictionaryList.class;
}
startFragment(InputMethodAndLanguageSettings.this,
targetFragment.getCanonicalName(), -1, extras);
targetFragment.getCanonicalName(), -1, -1, extras);
return true;
}
});