diff options
author | boret <salvador.cunat@gmail.com> | 2012-11-10 16:51:44 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2012-11-11 11:04:38 +0100 |
commit | 240ef9e9e5d0be37894ffa76dff36135fbf2bc19 (patch) | |
tree | 4001db3f527babb8f4db2cc4c588ace668f65a42 /display.h | |
parent | 8514ec8723542b11a555af2d204a4a7b66b062cc (diff) | |
download | subsurface-240ef9e9e5d0be37894ffa76dff36135fbf2bc19.tar.gz |
Add another print option, 1 dive per sheet.
Simply add a dive option on bigger surface, whith bigger fonts.
The size isn't A4 nor A5, but the size used by some popular paper
divelogs.
The modification performs better if we transpose the profile and
the text of the dive, because, if the notes are very brief,we get
an excess of white space at the bottom of the print.
Signed-off-by: Salvador Cuñat <salvador.cunat@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'display.h')
-rw-r--r-- | display.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ extern void init_profile_background(struct graphics_context *gc); extern void attach_tooltip(int x, int y, int w, int h, const char *text); struct options { - enum { PRETTY, TABLE } type; + enum { PRETTY, TABLE, ONEPERPAGE } type; int print_selected; }; |