summaryrefslogtreecommitdiffstats
path: root/display.h
diff options
context:
space:
mode:
authorGravatar Pierre-Yves Chibon <pingou@pingoured.fr>2012-08-29 10:30:14 +0200
committerGravatar Pierre-Yves Chibon <pingou@pingoured.fr>2012-08-29 10:44:34 +0200
commitc4eeda1ef70651c3759afd3c0a9bbc38694248c5 (patch)
tree3b725e2cdc88bd4e28ccec823ad31eb4e7bbc88e /display.h
parenteef0e9e699ddfb2890837f44b26fddc4d62eb89a (diff)
downloadsubsurface-c4eeda1ef70651c3759afd3c0a9bbc38694248c5.tar.gz
Invert the print 'dive profile' option.
With this change, instead of asking to print the dive profile, you ask to not print them. So the checkbox in the print options changes from 'Show profiles' to 'No dive profiles'. Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
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 4e1511656..11895e6e1 100644
--- a/display.h
+++ b/display.h
@@ -28,7 +28,7 @@ extern void attach_tooltip(int x, int y, int w, int h, const char *text);
struct options {
enum { PRETTY, TABLE } type;
- gboolean print_profiles;
+ gboolean print_no_profiles;
};
extern char zoomed_plot;