[vlc-devel] commit: Enabled fullscreen controler by default. (Laurent Aimar )
git version control
git at videolan.org
Thu Jul 17 20:21:04 CEST 2008
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Thu Jul 17 20:02:00 2008 +0200| [d0076456024468810073f43605e70e91cd3322c0]
Enabled fullscreen controler by default.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d0076456024468810073f43605e70e91cd3322c0
---
modules/gui/qt4/main_interface.cpp | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp
index 355f7a3..bc1321b 100644
--- a/modules/gui/qt4/main_interface.cpp
+++ b/modules/gui/qt4/main_interface.cpp
@@ -679,16 +679,14 @@ void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
// emit askVideoToResize( *pi_width, *pi_height );
emit askUpdate();
- //XXX uncomment for fullscreen controler
- //fullscreenControls->attachVout( p_nvout );
+ fullscreenControls->attachVout( p_nvout );
}
return ret;
}
void MainInterface::releaseVideo( vout_thread_t *p_vout, void *p_win )
{
- //XXX uncomment for fullscreen controler
- //fullscreenControls->detachVout( p_vout );
+ fullscreenControls->detachVout( p_vout );
emit askReleaseVideo( p_win );
}
More information about the vlc-devel
mailing list