diff options
author | Willem Ferguson <willemferguson@zoology.up.ac.za> | 2018-04-29 07:00:17 +0200 |
---|---|---|
committer | Robert C. Helling <helling@atdotde.de> | 2018-05-07 13:56:23 +0200 |
commit | 70bb4c145bd60c80153b9700edd5a914a45fea84 (patch) | |
tree | 96b32fa6afc957cd4decde3044f52c811cdb5516 /core/color.cpp | |
parent | fc7cb09b37fc3e39fe7d60f1af83f506b7bfcbd2 (diff) | |
download | subsurface-70bb4c145bd60c80153b9700edd5a914a45fea84.tar.gz |
Fix CCR setpoint display bug
1) The connection for the display of CCR-setpoint o2SetpointGasItem
was erroneous, being connected to partialpressuregasSettings. It
is now correctly connected to technicalDetailsSettings.
2) The colour of the setpoint graph is changed from PO2_ALERT (red) to
an orange colour in order to show setpoint in red only when it
exceeds 1.6. This emphasises the visibility of red parts of the
gas pressure graphs whenever gas limits are exceeed.
Signed-off-by: Willem Ferguson <willemferguson@zoology.up.ac.za>
Diffstat (limited to 'core/color.cpp')
-rw-r--r-- | core/color.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/color.cpp b/core/color.cpp index 6ac7fc761..c0b8a4643 100644 --- a/core/color.cpp +++ b/core/color.cpp @@ -28,7 +28,7 @@ void fill_profile_color() profile_color[PN2_ALERT] = COLOR(RED1, BLACK1_LOW_TRANS, RED1); profile_color[PHE] = COLOR(PEANUT, BLACK1_LOW_TRANS, PEANUT); profile_color[PHE_ALERT] = COLOR(RED1, BLACK1_LOW_TRANS, RED1); - profile_color[O2SETPOINT] = COLOR(RED1, BLACK1_LOW_TRANS, RED1); + profile_color[O2SETPOINT] = COLOR(PIRATEGOLD1_MED_TRANS, BLACK1_LOW_TRANS, PIRATEGOLD1_MED_TRANS); profile_color[CCRSENSOR1] = COLOR(TUNDORA1_MED_TRANS, BLACK1_LOW_TRANS, TUNDORA1_MED_TRANS); profile_color[CCRSENSOR2] = COLOR(ROYALBLUE2_LOW_TRANS, BLACK1_LOW_TRANS, ROYALBLUE2_LOW_TRANS); profile_color[CCRSENSOR3] = COLOR(PEANUT, BLACK1_LOW_TRANS, PEANUT); |