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

Commit f0db07b6 authored by Danesh M's avatar Danesh M Committed by Ethan Chen
Browse files

Make people lookup default overlay

Change-Id: I6dd7267bc82d33e04d99024e4dfb193f071d4f97
parent 89f66554
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -231,4 +231,8 @@
    <!-- Default theme -->
    <!-- Default theme -->
    <string name="def_theme_package"></string>
    <string name="def_theme_package"></string>
    <string name="def_theme_components"></string>
    <string name="def_theme_components"></string>

    <!-- Default value of Settings.System.ENABLE_PEOPLE_LOOKUP -->
    <integer name="def_people_lookup">1</integer>

</resources>
</resources>
+3 −0
Original line number Original line Diff line number Diff line
@@ -2412,6 +2412,9 @@ public class DatabaseHelper extends SQLiteOpenHelper {
            loadIntegerSetting(stmt, Settings.System.STATUS_BAR_BATTERY_STYLE,
            loadIntegerSetting(stmt, Settings.System.STATUS_BAR_BATTERY_STYLE,
                    R.integer.def_battery_style);
                    R.integer.def_battery_style);


            loadIntegerSetting(stmt, Settings.System.ENABLE_PEOPLE_LOOKUP,
                    R.integer.def_people_lookup);

        } finally {
        } finally {
            if (stmt != null) stmt.close();
            if (stmt != null) stmt.close();
        }
        }