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

Commit dbd515d5 authored by John Spurlock's avatar John Spurlock Committed by Android Git Automerger
Browse files

am 8909d058: am 634471ed: Load default Dream settings into a clean db.

* commit '8909d058':
  Load default Dream settings into a clean db.
parents 03a6826c 8909d058
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1697,6 +1697,13 @@ public class DatabaseHelper extends SQLiteOpenHelper {

            loadIntegerSetting(stmt, Settings.Secure.WIFI_MAX_DHCP_RETRY_COUNT,
                    R.integer.def_max_dhcp_retries);

            loadBooleanSetting(stmt, Settings.Secure.SCREENSAVER_ENABLED,
                    R.bool.def_screensaver_enabled);
            loadBooleanSetting(stmt, Settings.Secure.SCREENSAVER_ACTIVATE_ON_DOCK,
                    R.bool.def_screensaver_activate_on_dock);
            loadStringSetting(stmt, Settings.Secure.SCREENSAVER_COMPONENT,
                    R.string.def_screensaver_component);
        } finally {
            if (stmt != null) stmt.close();
        }