Fix Profile selected in ProfileDialog from Treatment

This commit is contained in:
Philoul 2021-12-28 10:52:23 +01:00
parent e14cdd7c2a
commit 331b0ad340

View file

@ -244,7 +244,7 @@ class TreatmentsProfileSwitchFragment : DaggerFragment() {
ProfileViewerDialog().also { pvd ->
pvd.arguments = Bundle().also { args ->
args.putLong("time", (it.tag as ProfileSealed).timestamp)
args.putInt("mode", ProfileViewerDialog.Mode.DB_PROFILE.ordinal)
args.putInt("mode", ProfileViewerDialog.Mode.RUNNING_PROFILE.ordinal)
}
pvd.show(childFragmentManager, "ProfileViewDialog")
}
@ -253,7 +253,7 @@ class TreatmentsProfileSwitchFragment : DaggerFragment() {
ProfileViewerDialog().also { pvd ->
pvd.arguments = Bundle().also { args ->
args.putLong("time", (it.tag as ProfileSealed).timestamp)
args.putInt("mode", ProfileViewerDialog.Mode.DB_PROFILE.ordinal)
args.putInt("mode", ProfileViewerDialog.Mode.RUNNING_PROFILE.ordinal)
}
pvd.show(childFragmentManager, "ProfileViewDialog")
}