[vlc-devel] commit: Hopefully fix the play button issue. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Sat Mar 29 05:17:15 CET 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Mar 28 21:15:01 2008 -0700| [dab72b3b7216187ca85da4dd6777f1e8a1e5e80c]
Hopefully fix the play button issue.
ILEoo, any idea why ?
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dab72b3b7216187ca85da4dd6777f1e8a1e5e80c
---
modules/gui/qt4/input_manager.cpp | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp
index e884d5d..c366619 100644
--- a/modules/gui/qt4/input_manager.cpp
+++ b/modules/gui/qt4/input_manager.cpp
@@ -174,8 +174,11 @@ void InputManager::customEvent( QEvent *event )
if( !hasInput() ) return;
- if( ( type != PositionUpdate_Type && type != ItemRateChanged_Type ) &&
- ( i_input_id != ple->i_id ) )
+ if( ( type != PositionUpdate_Type &&
+ type != ItemRateChanged_Type &&
+ type != ItemStateChanged_Type
+ )
+ && ( i_input_id != ple->i_id ) )
return;
if( type != PositionUpdate_Type )
More information about the vlc-devel
mailing list