summaryrefslogtreecommitdiffstats
path: root/profile.c
diff options
context:
space:
mode:
authorGravatar Henrik Brautaset Aronsen <subsurface@henrik.synth.no>2011-12-06 19:42:20 +0100
committerGravatar Henrik Brautaset Aronsen <subsurface@henrik.synth.no>2011-12-06 19:45:38 +0100
commit34a0f5255ae8032ec33732881384be644af74355 (patch)
tree439b1e2b07bd778e9d068f5de75c474f6897ee57 /profile.c
parent46e72b698abfbaa371ec7e3e0d19bbdac322d17c (diff)
downloadsubsurface-34a0f5255ae8032ec33732881384be644af74355.tar.gz
Move depth/time grid back
The temperature profile was behind the white depth/time grid. Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Diffstat (limited to 'profile.c')
-rw-r--r--profile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/profile.c b/profile.c
index b01514a57..716ce1047 100644
--- a/profile.c
+++ b/profile.c
@@ -1334,13 +1334,13 @@ void plot(struct graphics_context *gc, cairo_rectangle_int_t *drawing_area, stru
gc->maxx = (drawing_area->width - 2*drawing_area->x);
gc->maxy = (drawing_area->height - 2*drawing_area->y);
- /* Temperature profile */
- plot_temperature_profile(gc, pi);
-
/* Depth profile */
plot_depth_profile(gc, pi);
plot_events(gc, pi, dive);
+ /* Temperature profile */
+ plot_temperature_profile(gc, pi);
+
/* Cylinder pressure plot */
plot_cylinder_pressure(gc, pi, dive);