[vlc-commits] commit: Qt: Increase the max synchronisation time (Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Thu Jul 1 18:12:49 CEST 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Jul 1 18:12:19 2010 +0200| [2298f3808f2c8ec4278377ed5f002fbc7da5960f] | committer: Jean-Baptiste Kempf
Qt: Increase the max synchronisation time
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2298f3808f2c8ec4278377ed5f002fbc7da5960f
---
modules/gui/qt4/components/extended_panels.cpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/gui/qt4/components/extended_panels.cpp b/modules/gui/qt4/components/extended_panels.cpp
index 874277a..da4d340 100644
--- a/modules/gui/qt4/components/extended_panels.cpp
+++ b/modules/gui/qt4/components/extended_panels.cpp
@@ -1297,8 +1297,8 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
AVSpin = new QDoubleSpinBox;
AVSpin->setAlignment( Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter );
AVSpin->setDecimals( 3 );
- AVSpin->setMinimum( -100.0 );
- AVSpin->setMaximum( 100.0 );
+ AVSpin->setMinimum( -600.0 );
+ AVSpin->setMaximum( 600.0 );
AVSpin->setSingleStep( 0.1 );
AVSpin->setToolTip( qtr( "A positive value means that\n"
"the audio is ahead of the video" ) );
@@ -1330,8 +1330,8 @@ SyncControls::SyncControls( intf_thread_t *_p_intf, QWidget *_parent ) :
subsSpin = new QDoubleSpinBox;
subsSpin->setAlignment( Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter );
subsSpin->setDecimals( 3 );
- subsSpin->setMinimum( -100.0 );
- subsSpin->setMaximum( 100.0 );
+ subsSpin->setMinimum( -600.0 );
+ subsSpin->setMaximum( 600.0 );
subsSpin->setSingleStep( 0.1 );
subsSpin->setToolTip( qtr( "A positive value means that\n"
"the subtitles are ahead of the video" ) );
More information about the vlc-commits
mailing list