]> git.sesse.net Git - vlc/commitdiff
* sorry, this one was unintended
authorFelix Paul Kühne <fkuehne@videolan.org>
Fri, 28 Dec 2007 19:38:05 +0000 (19:38 +0000)
committerFelix Paul Kühne <fkuehne@videolan.org>
Fri, 28 Dec 2007 19:38:05 +0000 (19:38 +0000)
modules/gui/macosx/vout.m

index dd0fce64c7e7f49524b9f5aae8129ebc59f6ca8d..f9d84bbd9bf45e9802ba403dc7bc8c5a4f250e40 100644 (file)
@@ -1093,13 +1093,6 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
         {
             s_rect.size.width  = p_vout->i_window_width;
             s_rect.size.height = p_vout->i_window_height;
-
-            /* go to our default position, if set */
-            if( var_GetInteger( p_vout, "video-x" ) > -1 )
-                s_rect.origin.x = var_GetInteger( p_vout, "video-x" );
-            if( var_GetInteger( p_vout, "video-y" ) > -1 )
-                s_rect.origin.y = var_GetInteger( p_vout, "video-y" );
-            msg_Dbg( p_vout, "vout will open at %i:%i", s_rect.origin.x, s_rect.origin.y );
         }
         else
         {
@@ -1115,7 +1108,6 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
 
         if( !s_frame )
         {
-            msg_Warn( p_vout, "no frame found, centering vout" );
             [self center];
         }
     }