diff --git a/pump/medtrum/src/main/java/info/nightscout/pump/medtrum/ui/MedtrumOverviewFragment.kt b/pump/medtrum/src/main/java/info/nightscout/pump/medtrum/ui/MedtrumOverviewFragment.kt index 7d9050370d..eed99396b7 100644 --- a/pump/medtrum/src/main/java/info/nightscout/pump/medtrum/ui/MedtrumOverviewFragment.kt +++ b/pump/medtrum/src/main/java/info/nightscout/pump/medtrum/ui/MedtrumOverviewFragment.kt @@ -44,12 +44,13 @@ class MedtrumOverviewFragment : MedtrumBaseFragment when (evt.peekContent()) { EventType.ACTIVATION_CLICKED -> requireContext().apply { - var step = convertToPatchStep(medtrumPump.pumpState) - if (step == PatchStep.DEACTIVATION_COMPLETE) { - // Reset - step = PatchStep.PREPARE_PATCH - } - startActivity(MedtrumActivity.createIntentFromMenu(this, step)) + // TODO: Check what to do with this, and if we need this, it currently messes up patch is last registered as priming + // var step = convertToPatchStep(medtrumPump.pumpState) + // if (step == PatchStep.DEACTIVATION_COMPLETE) { + // // Reset + // step = PatchStep.PREPARE_PATCH + // } + startActivity(MedtrumActivity.createIntentFromMenu(this, PatchStep.PREPARE_PATCH)) } EventType.DEACTIVATION_CLICKED -> requireContext().apply {