[vlc-commits] commit: Qt: CaptureOpenPanel: fix layout (Francois Cartegnie )
git at videolan.org
git at videolan.org
Wed Sep 29 21:41:16 CEST 2010
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Sep 29 19:32:36 2010 +0200| [8c499322011ee0a363e9dfc9310576ebb14612dc] | committer: Francois Cartegnie
Qt: CaptureOpenPanel: fix layout
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8c499322011ee0a363e9dfc9310576ebb14612dc
---
modules/gui/qt4/components/open_panels.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/components/open_panels.cpp b/modules/gui/qt4/components/open_panels.cpp
index b060d82..ee38d4a 100644
--- a/modules/gui/qt4/components/open_panels.cpp
+++ b/modules/gui/qt4/components/open_panels.cpp
@@ -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& ) );
More information about the vlc-commits
mailing list