From d1c3c6fa287a1c21bddaa8eb988bef4de9abed82 Mon Sep 17 00:00:00 2001 From: Derk-Jan Hartman Date: Fri, 9 May 2003 01:19:43 +0000 Subject: [PATCH] * modules/gui/macosx/prefs.m: - possibly fixed a crash situation when clicking the OK button (not sure though) * modules/gui/macosx/macosx.m: - made the transparency option an advanced option. --- modules/gui/macosx/macosx.m | 4 ++-- modules/gui/macosx/prefs.m | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/modules/gui/macosx/macosx.m b/modules/gui/macosx/macosx.m index ba9f14c365..72f5d56246 100644 --- a/modules/gui/macosx/macosx.m +++ b/modules/gui/macosx/macosx.m @@ -2,7 +2,7 @@ * macosx.m: MacOS X plugin for vlc ***************************************************************************** * Copyright (C) 2001-2003 VideoLAN - * $Id: macosx.m,v 1.8 2003/05/01 01:11:17 hartman Exp $ + * $Id: macosx.m,v 1.9 2003/05/09 01:19:43 hartman Exp $ * * Authors: Colin Delacroix * Eugenio Jarosiewicz @@ -65,7 +65,7 @@ vlc_module_begin(); set_callbacks( E_(OpenVideo), E_(CloseVideo) ); add_category_hint( N_("Video"), NULL, VLC_FALSE ); add_integer( "macosx-vdev", 0, NULL, VDEV_TEXT, VDEV_TEXT, VLC_FALSE ); - add_float( "macosx-opaqueness", 1, NULL, OPAQUENESS_TEXT, OPAQUENESS_LONGTEXT, VLC_FALSE ); + add_float( "macosx-opaqueness", 1, NULL, OPAQUENESS_TEXT, OPAQUENESS_LONGTEXT, VLC_TRUE ); add_bool( "macosx-float", 0, NULL, FLOAT_TEXT, FLOAT_LONGTEXT, VLC_FALSE ); vlc_module_end(); diff --git a/modules/gui/macosx/prefs.m b/modules/gui/macosx/prefs.m index 9e586683a4..196f3fd8fd 100644 --- a/modules/gui/macosx/prefs.m +++ b/modules/gui/macosx/prefs.m @@ -2,7 +2,7 @@ * prefs.m: MacOS X plugin for vlc ***************************************************************************** * Copyright (C) 2002-2003 VideoLAN - * $Id: prefs.m,v 1.19 2003/05/09 00:58:24 titer Exp $ + * $Id: prefs.m,v 1.20 2003/05/09 01:19:43 hartman Exp $ * * Authors: Jon Lech Johansen * @@ -795,8 +795,6 @@ } } - [o_prefs removeAllObjects]; - config_SaveConfigFile( p_intf, NULL ); } if( [[sender title] isEqualToString: _NS("Advanced")] ) -- GitLab