mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Use the correct theme on ICS"
This commit is contained in:
commit
60e4997eab
@ -182,7 +182,8 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
|
|||||||
|
|
||||||
private static int getKeyboardThemeIndex(Context context, SharedPreferences prefs) {
|
private static int getKeyboardThemeIndex(Context context, SharedPreferences prefs) {
|
||||||
final String defaultThemeId = context.getString(R.string.config_default_keyboard_theme_id);
|
final String defaultThemeId = context.getString(R.string.config_default_keyboard_theme_id);
|
||||||
final String themeId = prefs.getString(PREF_KEYBOARD_LAYOUT, defaultThemeId);
|
final String themeId = Settings.ENABLE_EXPERIMENTAL_SETTINGS
|
||||||
|
? prefs.getString(PREF_KEYBOARD_LAYOUT, defaultThemeId) : defaultThemeId;
|
||||||
try {
|
try {
|
||||||
final int themeIndex = Integer.valueOf(themeId);
|
final int themeIndex = Integer.valueOf(themeId);
|
||||||
if (themeIndex >= 0 && themeIndex < KEYBOARD_THEMES.length)
|
if (themeIndex >= 0 && themeIndex < KEYBOARD_THEMES.length)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user