diff options
author | Kalle Wallin <kaw@linux.se> | 2004-07-12 21:17:27 +0000 |
---|---|---|
committer | Kalle Wallin <kaw@linux.se> | 2004-07-12 21:17:27 +0000 |
commit | 2c6af7312cf617f40ab407323fd07a9fa5579495 (patch) | |
tree | fb4f458db5608b60a8b922c2c57015276c846c68 /src/options.h | |
parent | a054f129e4e4eb6baac21c192c1cf49bd6343fc4 (diff) | |
download | mpd-2c6af7312cf617f40ab407323fd07a9fa5579495.tar.gz mpd-2c6af7312cf617f40ab407323fd07a9fa5579495.tar.xz mpd-2c6af7312cf617f40ab407323fd07a9fa5579495.zip |
Mouse support is now optional (enable-mouse)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1861 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/options.h b/src/options.h index 5bc24f38d..9cbe38675 100644 --- a/src/options.h +++ b/src/options.h @@ -20,9 +20,10 @@ typedef struct gboolean auto_center; gboolean wide_cursor; gboolean enable_colors; - gboolean audible_bell; /* not implemented */ - gboolean visible_bell; /* not implemented */ - gboolean enable_xterm_title; /* not implemented */ + gboolean audible_bell; + gboolean visible_bell; + gboolean enable_xterm_title; + gboolean enable_mouse_events; } options_t; |