diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-21 12:16:08 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-21 12:18:38 -0700 |
commit | 51486040686592965bd7a70cf52767350cfde5f6 (patch) | |
tree | 99dc35354d872c3b395f5790fc3fd568386da041 /print.c | |
parent | 515a9171523f7d8aa85f2caab262ba7d6320c33c (diff) | |
download | subsurface-51486040686592965bd7a70cf52767350cfde5f6.tar.gz |
Small printing tweaks
It's getting to the point where I'm happy with this. This just makes
the spacing between the location and the notes a bit bigger to visually
separate them more, and adds units ("min") to the dive duration (and
removes the seconds, that really didn't make any sense at an overview
level).
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'print.c')
-rw-r--r-- | print.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -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; |