Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d179e408 authored by Andy Wang's avatar Andy Wang
Browse files

Stop passing through keyPrefs as it's already available.

Change-Id: I43a56beba0cf0fdf5f93c5c764edbd279ee033b2
parent 11a3965f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -281,8 +281,7 @@ public final class DebugSettingsFragment extends SubScreenFragment

            @Override
            public int readValue(final String key) {
                return getPercentageFromValue(
                        Settings.readKeyboardHeight(prefs, key, defaultValue));
                return getPercentageFromValue(Settings.readKeyboardHeight(prefs, defaultValue));
            }

            @Override
+3 −2
Original line number Diff line number Diff line
@@ -368,8 +368,9 @@ public final class Settings implements SharedPreferences.OnSharedPreferenceChang
    }

    public static float readKeyboardHeight(final SharedPreferences prefs,
            final String prefKey, final float defaultValue) {
        final float percentage = prefs.getFloat(prefKey, UNDEFINED_PREFERENCE_VALUE_FLOAT);
            final float defaultValue) {
        final float percentage = prefs.getFloat(
                DebugSettings.PREF_KEYBOARD_HEIGHT_SCALE, UNDEFINED_PREFERENCE_VALUE_FLOAT);
        return (percentage != UNDEFINED_PREFERENCE_VALUE_FLOAT) ? percentage : defaultValue;
    }

+1 −2
Original line number Diff line number Diff line
@@ -190,8 +190,7 @@ public class SettingsValues {
        mHasCustomKeyPreviewAnimationParams = prefs.getBoolean(
                DebugSettings.PREF_HAS_CUSTOM_KEY_PREVIEW_ANIMATION_PARAMS, false);
        mHasKeyboardResize = prefs.getBoolean(DebugSettings.PREF_RESIZE_KEYBOARD, false);
        mKeyboardHeightScale = Settings.readKeyboardHeight(
                prefs, DebugSettings.PREF_KEYBOARD_HEIGHT_SCALE, DEFAULT_SIZE_SCALE);
        mKeyboardHeightScale = Settings.readKeyboardHeight(prefs, DEFAULT_SIZE_SCALE);
        mKeyPreviewShowUpDuration = Settings.readKeyPreviewAnimationDuration(
                prefs, DebugSettings.PREF_KEY_PREVIEW_SHOW_UP_DURATION,
                res.getInteger(R.integer.config_key_preview_show_up_duration));