diff options
author | phintuka <phintuka> | 2006-09-19 08:26:38 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-09-19 08:26:38 +0000 |
commit | d1d11c1e66f98b557afae2abe4c3273d0cced3b5 (patch) | |
tree | 24daf3cbb4b4647e8468a69e1023b0925f18f965 | |
parent | 2c04b69a88cae166567edb262d8bd633b99c5756 (diff) | |
download | xineliboutput-d1d11c1e66f98b557afae2abe4c3273d0cced3b5.tar.gz xineliboutput-d1d11c1e66f98b557afae2abe4c3273d0cced3b5.tar.bz2 |
Fixed "Off" text for audio compression
-rw-r--r-- | menu.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: menu.c,v 1.15 2006-09-19 06:06:35 phintuka Exp $ + * $Id: menu.c,v 1.16 2006-09-19 08:26:38 phintuka Exp $ * */ @@ -508,7 +508,8 @@ cMenuXinelib::cMenuXinelib() ctrl_headphone = NULL; #endif - Add(audio_ctrl_compress = new cMenuEditTypedIntItem(tr("Audio Compression"),"%", &compression, 100, 500, tr("Off"))); + Add(audio_ctrl_compress = new cMenuEditTypedIntItem(tr("Audio Compression"),"%", + &compression, 100, 500, NULL, tr("Off"))); Add(new cOsdItem(tr("Audio equalizer >>"), osUser7)); |