summaryrefslogtreecommitdiffstats
path: root/display.h
diff options
context:
space:
mode:
authorGravatar boret <salvador.cunat@gmail.com>2012-11-10 16:51:44 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-11-11 11:04:38 +0100
commit240ef9e9e5d0be37894ffa76dff36135fbf2bc19 (patch)
tree4001db3f527babb8f4db2cc4c588ace668f65a42 /display.h
parent8514ec8723542b11a555af2d204a4a7b66b062cc (diff)
downloadsubsurface-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/display.h b/display.h
index 82d12682b..880a8b7be 100644
--- a/display.h
+++ b/display.h
@@ -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;
};