]> git.sesse.net Git - vlc/commitdiff
skins2: Oops, autoresize (part 2)
authorErwan Tulou <erwan10@videolan.org>
Sat, 14 Aug 2010 13:33:52 +0000 (15:33 +0200)
committerErwan Tulou <erwan10@videolan.org>
Sat, 14 Aug 2010 13:39:13 +0000 (15:39 +0200)
this patch completes 07bf40d589a3f4fa9a608c50d7599b8b9b7059bf

modules/gui/skins2/parser/builder.cpp

index df0f5507fd4cfd3b1ccabaa11e6c66add32b9872..d430a0b99168226d7d5f4d878b648044eecec067 100644 (file)
@@ -1018,16 +1018,6 @@ void Builder::addVideo( const BuilderData::Video &rData )
         return;
     }
 
-    // Get the visibility variable
-    // XXX check when it is null
-    Interpreter *pInterpreter = Interpreter::instance( getIntf() );
-    VarBool *pVisible = pInterpreter->getVarBool( rData.m_visible, m_pTheme );
-
-    CtrlVideo *pVideo = new CtrlVideo( getIntf(), *pLayout,
-        rData.m_autoResize, UString( getIntf(), rData.m_help.c_str() ),
-        pVisible );
-    m_pTheme->m_controls[rData.m_id] = CtrlGenericPtr( pVideo );
-
     BuilderData::Video Data = rData;
     if( Data.m_autoResize )
     {
@@ -1043,6 +1033,16 @@ void Builder::addVideo( const BuilderData::Video &rData )
         }
     }
 
+    // Get the visibility variable
+    // XXX check when it is null
+    Interpreter *pInterpreter = Interpreter::instance( getIntf() );
+    VarBool *pVisible = pInterpreter->getVarBool( Data.m_visible, m_pTheme );
+
+    CtrlVideo *pVideo = new CtrlVideo( getIntf(), *pLayout,
+        Data.m_autoResize, UString( getIntf(), Data.m_help.c_str() ),
+        pVisible );
+    m_pTheme->m_controls[Data.m_id] = CtrlGenericPtr( pVideo );
+
     // Compute the position of the control
     const GenericRect *pRect;
     GET_BOX( pRect, rData.m_panelId , pLayout);
@@ -1052,7 +1052,7 @@ void Builder::addVideo( const BuilderData::Video &rData )
                                        *pRect,
                                        Data.m_xKeepRatio, Data.m_yKeepRatio );
 
-    pLayout->addControl( pVideo, pos, rData.m_layer );
+    pLayout->addControl( pVideo, pos, Data.m_layer );
 }