]> git.sesse.net Git - vlc/commitdiff
Qt: CaptureOpenPanel: fix layout
authorFrancois Cartegnie <fcvlcdev@free.fr>
Wed, 29 Sep 2010 17:32:36 +0000 (19:32 +0200)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Wed, 29 Sep 2010 19:39:16 +0000 (21:39 +0200)
modules/gui/qt4/components/open_panels.cpp

index b060d825ba752b6080c62d43346f43d48d9e1feb..ee38d4af406de1e599352a45531e19d12ef3a96c 100644 (file)
@@ -836,14 +836,14 @@ void CaptureOpenPanel::initialize()
     v4l2DevLayout->addWidget( v4l2AudioDevice, 1, 1 );
 
     /* v4l2 Props panel */
-    QLabel *v4l2StdLabel = new QLabel( qtr( "Standard" ) );
+    QLabel *v4l2StdLabel = new QLabel( qtr( "Video standard" ) );
     v4l2PropLayout->addWidget( v4l2StdLabel, 0 , 0 );
 
     v4l2StdBox = new QComboBox;
     setfillVLCConfigCombo( "v4l2-standard", p_intf, v4l2StdBox );
     v4l2PropLayout->addWidget( v4l2StdBox, 0 , 1 );
     v4l2PropLayout->addItem( new QSpacerItem( 20, 20, QSizePolicy::Expanding ),
-            1, 0, 3, 1 );
+            1, 0, 3, 2 );
 
     /* v4l2 CONNECTs */
     CuMRL( v4l2VideoDevice->lineEdit(), textChanged( const QString& ) );