diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-08-29 10:30:14 +0200 |
---|---|---|
committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-08-29 10:44:34 +0200 |
commit | c4eeda1ef70651c3759afd3c0a9bbc38694248c5 (patch) | |
tree | 3b725e2cdc88bd4e28ccec823ad31eb4e7bbc88e /display.h | |
parent | eef0e9e699ddfb2890837f44b26fddc4d62eb89a (diff) | |
download | subsurface-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |