diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2008-09-21 19:37:43 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-21 21:51:00 +0200 |
commit | 61053ab09a52c4a0ca36ed4e7eb01cc8a26463d9 (patch) | |
tree | 6737e887d505d640b880cea1a2cb8078512d013b /src/options.h | |
parent | ad98c332ac7551dbf1f99b2c7f5ae60e1009787f (diff) | |
download | mpd-61053ab09a52c4a0ca36ed4e7eb01cc8a26463d9.tar.gz mpd-61053ab09a52c4a0ca36ed4e7eb01cc8a26463d9.tar.xz mpd-61053ab09a52c4a0ca36ed4e7eb01cc8a26463d9.zip |
added optional bitrate display to status bar
If visible-bitrate is enabled, then the current bitrate will be drawn next
to the song time in the status bar. By default it will not be displayed.
Diffstat (limited to '')
-rw-r--r-- | src/options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h index d0a068f84..58eaff130 100644 --- a/src/options.h +++ b/src/options.h @@ -37,6 +37,7 @@ typedef struct { gboolean enable_xterm_title; gboolean enable_mouse; gboolean scroll; + gboolean visible_bitrate; } options_t; #ifndef NO_GLOBAL_OPTIONS |