diff options
Diffstat (limited to 'setup_menu.c')
-rw-r--r-- | setup_menu.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/setup_menu.c b/setup_menu.c index 28026229..48b599eb 100644 --- a/setup_menu.c +++ b/setup_menu.c @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: setup_menu.c,v 1.75 2010-01-20 13:03:43 phintuka Exp $ + * $Id: setup_menu.c,v 1.76 2010-03-12 23:00:26 phintuka Exp $ * */ @@ -960,6 +960,8 @@ void cMenuSetupOSD::Set(void) new cMenuEditStraI18nItem(tr("Scaling method"), &newconfig.osd_scaling, OSD_SCALING_count, xc.s_osdScalings)); + Add(new cMenuEditBoolItem(tr("Scale subtitles"), &newconfig.osd_spu_scaling)); + Add(new cMenuEditStraI18nItem(tr("Show all layers"), &newconfig.osd_mixer, OSD_MIXER_count, xc.s_osdMixers)); @@ -1032,6 +1034,7 @@ void cMenuSetupOSD::Store(void) SetupStore("OSD.Width", xc.osd_width); SetupStore("OSD.Height", xc.osd_height); SetupStore("OSD.Scaling", xc.osd_scaling); + SetupStore("OSD.ScalingSPU", xc.osd_spu_scaling); SetupStore("OSD.HideMainMenu", xc.hide_main_menu); SetupStore("OSD.LayersVisible", xc.osd_mixer); SetupStore("OSD.Blending", xc.osd_blending); |