Hide Autotune detailed log setting
This commit is contained in:
parent
dceca8d194
commit
d9916c3d50
2 changed files with 3 additions and 1 deletions
|
@ -79,6 +79,7 @@ class AutotuneFragment : DaggerFragment() {
|
||||||
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||||||
super.onViewCreated(view, savedInstanceState)
|
super.onViewCreated(view, savedInstanceState)
|
||||||
sp.putBoolean(R.string.key_autotune_tune_insulin_curve, false) // put to false tune insulin curve
|
sp.putBoolean(R.string.key_autotune_tune_insulin_curve, false) // put to false tune insulin curve
|
||||||
|
sp.putBoolean(R.string.key_autotune_additional_log, false) // put to false additional log
|
||||||
autotunePlugin.lastRun = sp.getLong(R.string.key_autotune_last_run, 0)
|
autotunePlugin.lastRun = sp.getLong(R.string.key_autotune_last_run, 0)
|
||||||
if (autotunePlugin.lastNbDays.isEmpty())
|
if (autotunePlugin.lastNbDays.isEmpty())
|
||||||
autotunePlugin.lastNbDays = sp.getInt(R.string.key_autotune_default_tune_days, 5).toString()
|
autotunePlugin.lastNbDays = sp.getInt(R.string.key_autotune_default_tune_days, 5).toString()
|
||||||
|
|
|
@ -36,11 +36,12 @@
|
||||||
android:key="@string/key_autotune_circadian_ic_isf"
|
android:key="@string/key_autotune_circadian_ic_isf"
|
||||||
android:summary="@string/autotune_circadian_ic_isf_summary"
|
android:summary="@string/autotune_circadian_ic_isf_summary"
|
||||||
android:title="@string/autotune_circadian_ic_isf_title" />
|
android:title="@string/autotune_circadian_ic_isf_title" />
|
||||||
|
<!-- Hide autotune_additional_log option
|
||||||
<SwitchPreference
|
<SwitchPreference
|
||||||
android:defaultValue="false"
|
android:defaultValue="false"
|
||||||
android:key="@string/key_autotune_additional_log"
|
android:key="@string/key_autotune_additional_log"
|
||||||
android:summary="@string/autotune_additional_log_summary"
|
android:summary="@string/autotune_additional_log_summary"
|
||||||
android:title="@string/autotune_additional_log_title" />
|
android:title="@string/autotune_additional_log_title" />
|
||||||
|
-->
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
</androidx.preference.PreferenceScreen>
|
</androidx.preference.PreferenceScreen>
|
Loading…
Reference in a new issue