mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add radio buttons for temperature and volume
.. and clean up some of the conversions. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a6d510f5f1
commit
7bbdea19ed
2 changed files with 29 additions and 37 deletions
|
@ -357,13 +357,13 @@ static void plot_cylinder_pressure_text(struct dive *dive, cairo_t *cr,
|
|||
unit = "pascal";
|
||||
break;
|
||||
case BAR:
|
||||
start = startp.mbar / 1000;
|
||||
end = endp.mbar / 1000;
|
||||
start = (startp.mbar + 500) / 1000;
|
||||
end = (endp.mbar + 500) / 1000;
|
||||
unit = "bar";
|
||||
break;
|
||||
case PSI:
|
||||
start = startp.mbar / 68.95;
|
||||
end = endp.mbar / 68.95;
|
||||
start = to_PSI(startp);
|
||||
end = to_PSI(endp);
|
||||
unit = "psi";
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue