diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2011-09-27 10:16:40 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2011-09-27 10:16:40 -0700 |
commit | 0aad4d6094173fd3c10e435be05bde541062232d (patch) | |
tree | eecc5b550701ffc7b056220a5717409439fcfabe /display-gtk.h | |
parent | dc2a0c1909727a1557b8f03e6b6ac3e427ebe4b7 (diff) | |
download | subsurface-0aad4d6094173fd3c10e435be05bde541062232d.tar.gz |
Add preference option to chose if SAC and/or OTU should be in divelist
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'display-gtk.h')
-rw-r--r-- | display-gtk.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/display-gtk.h b/display-gtk.h index dee66368a..ad437465c 100644 --- a/display-gtk.h +++ b/display-gtk.h @@ -11,6 +11,13 @@ typedef struct { GtkWidget *bar; } progressbar_t; +typedef struct { + gboolean sac; + gboolean otu; +} visible_cols_t; + +extern visible_cols_t visible_cols; + extern const char *divelist_font; extern void set_divelist_font(const char *); |