X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=print.c;h=0346cca74bf48d3addb5f977d343f80970b29bd2;hb=51486040686592965bd7a70cf52767350cfde5f6;hp=704ecaf66b76721ad2276f81ce8271c996921928;hpb=515a9171523f7d8aa85f2caab262ba7d6320c33c;p=ext%2Fsubsurface.git diff --git a/print.c b/print.c index 704ecaf..0346cca 100644 --- a/print.c +++ b/print.c @@ -69,11 +69,10 @@ static void show_dive_text(struct dive *dive, cairo_t *cr, double w, double h, P depth = get_depth_units(dive->maxdepth.mm, &decimals, &unit); snprintf(buffer, sizeof(buffer), "Max depth: %.*f %s\n" - "Duration: %d:%02d\n" + "Duration: %d min\n" "%s", decimals, depth, unit, - dive->duration.seconds / 60, - dive->duration.seconds % 60, + (dive->duration.seconds+59) / 60, dive->buddy ? :""); set_font(layout, font, FONT_SMALL, PANGO_ALIGN_RIGHT); @@ -107,8 +106,8 @@ static void show_dive_text(struct dive *dive, cairo_t *cr, double w, double h, P * Show the dive notes */ if (dive->notes) { - /* Move down by the size of the location (1.5) */ - height = height * 3 / 2; + /* Move down by the size of the location (x2) */ + height = height * 2; cairo_translate(cr, 0, height / (double) PANGO_SCALE); maxheight -= height;