From 2e6a37dcbd69cc6c6e58935651a77d92ce14d909 Mon Sep 17 00:00:00 2001 From: AdrianLxM Date: Mon, 7 Nov 2016 10:18:16 +0100 Subject: [PATCH] Add base basal rate to Overview when temp is running Now that there is more space with less buttons, it should fit ;) --- .../androidaps/plugins/Overview/OverviewFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/info/nightscout/androidaps/plugins/Overview/OverviewFragment.java b/app/src/main/java/info/nightscout/androidaps/plugins/Overview/OverviewFragment.java index 13f8dccd53..af70d89d78 100644 --- a/app/src/main/java/info/nightscout/androidaps/plugins/Overview/OverviewFragment.java +++ b/app/src/main/java/info/nightscout/androidaps/plugins/Overview/OverviewFragment.java @@ -462,7 +462,7 @@ public class OverviewFragment extends Fragment { TempBasal activeTemp = pump.getTempBasal(); cancelTempLayout.setVisibility(View.VISIBLE); cancelTempButton.setText(MainApp.instance().getString(R.string.cancel) + ": " + activeTemp.toString()); - runningTempView.setText(activeTemp.toString()); + runningTempView.setText(activeTemp.toString() + "\n(" + DecimalFormatter.to2Decimal(pump.getBaseBasalRate()) + " U/h" + ")"); } else { cancelTempLayout.setVisibility(View.GONE); Double currentBasal = pump.getBaseBasalRate();