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

Commit 4af5e3c5 authored by satok's avatar satok
Browse files

Fix isResearcherPackage

Change-Id: I286450fe89a37d75cb398f17d300ddc6f5857ffd
parent 2edd109f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ public class LatinImeLogger implements SharedPreferences.OnSharedPreferenceChang
    public static void onPrintAllUsabilityStudyLogs() {
    }

    public static boolean isResearcherPackage() {
    public static boolean isResearcherPackage(Context context) {
        return false;
    }
}
+1 −2
Original line number Diff line number Diff line
@@ -237,8 +237,7 @@ public class Settings extends InputMethodSettingsActivity
            textCorrectionGroup.removePreference(dictionaryLink);
        }

        // TODO: Following isResearcherPackage can be wrong until LatinImeLogger gets initialized.
        final boolean isResearcherPackage = LatinImeLogger.isResearcherPackage();
        final boolean isResearcherPackage = LatinImeLogger.isResearcherPackage(this);
        final boolean showUsabilityStudyModeOption =
                res.getBoolean(R.bool.config_enable_usability_study_mode_option)
                        || isResearcherPackage || ENABLE_EXPERIMENTAL_SETTINGS;