switch basal colors
This commit is contained in:
parent
9591aed93c
commit
77222a6c0a
2 changed files with 3 additions and 2 deletions
|
@ -203,6 +203,7 @@ public class ExecutionService extends Service {
|
|||
try {
|
||||
mRfcommSocket.connect();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
waitMsec(1000);
|
||||
|
||||
|
|
|
@ -475,8 +475,8 @@ public class OverviewFragment extends Fragment {
|
|||
@Override
|
||||
public int get(DataPoint data) {
|
||||
BarDataPoint point = (BarDataPoint) data;
|
||||
if (point.isTempBasal) return Color.CYAN;
|
||||
else return Color.BLUE;
|
||||
if (point.isTempBasal) return Color.BLUE;
|
||||
else return Color.CYAN;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue