Add preference option to chose if SAC and/or OTU should be in divelist

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2011-09-27 10:16:40 -07:00
parent dc2a0c1909
commit 0aad4d6094
5 changed files with 50 additions and 4 deletions

View file

@ -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 *);