]> git.sesse.net Git - vlc/commitdiff
Removes --macosx-fill which has been long broken and is now replaced with the croppin...
authorEric Petit <titer@videolan.org>
Thu, 21 Sep 2006 13:33:24 +0000 (13:33 +0000)
committerEric Petit <titer@videolan.org>
Thu, 21 Sep 2006 13:33:24 +0000 (13:33 +0000)
modules/gui/macosx/macosx.m
modules/gui/macosx/vout.m

index a321bd203f0d0476c48f093e57134e7727f76811..5f9c525fd3fd7df4e5adad230cad917c3fa170e0 100644 (file)
@@ -66,11 +66,6 @@ void E_(CloseVideoGL) ( vlc_object_t * );
         "resizing the video instead of keeping the aspect ratio and "\
         "displaying black borders.")
 
-#define FILL_TEXT N_("Crop borders in fullscreen")
-#define FILL_LONGTEXT N_("In fullscreen mode, crop the picture if " \
-        "necessary in order to fill the screen without black " \
-        "borders (OpenGL only)." )
-
 #define BLACK_TEXT N_("Black screens in fullscreen")
 #define BLACK_LONGTEXT N_("In fullscreen mode, keep screen where there is no " \
         "video displayed black" )
@@ -109,8 +104,6 @@ vlc_module_begin();
                 OPAQUENESS_TEXT, OPAQUENESS_LONGTEXT, VLC_TRUE );
         add_bool( "macosx-black", 0, NULL, BLACK_TEXT, BLACK_LONGTEXT,
                   VLC_TRUE );
-        add_bool( "macosx-fill", 0, NULL, FILL_TEXT, FILL_LONGTEXT,
-                  VLC_TRUE );
         add_bool( "macosx-background", 0, NULL, BACKGROUND_TEXT, BACKGROUND_LONGTEXT,
                      VLC_FALSE );
     add_submodule();
index 21b04592ca97d2903d965459d43531c7004257c7..36128e8784d64307b676d1426473c2af3582fd99 100644 (file)
@@ -668,7 +668,6 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
     var_Get( p_vout->p_libvlc, "drawable", &value_drawable );
 
     var_Create( p_vout, "macosx-vdev", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
-    var_Create( p_vout, "macosx-fill", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
     var_Create( p_vout, "macosx-stretch", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );
     var_Create( p_vout, "macosx-opaqueness", VLC_VAR_FLOAT | VLC_VAR_DOINHERIT );
     var_Create( p_vout, "macosx-background", VLC_VAR_BOOL | VLC_VAR_DOINHERIT );