[vlc-commits] qt: main_interface: Create the videoWidget when needed

Hugo Beauzée-Luyssen git at videolan.org
Thu Jan 25 18:02:49 CET 2018


vlc/vlc-3.0 | branch: master | Hugo Beauzée-Luyssen <hugo at beauzee.fr> | Mon Jan 22 14:22:15 2018 +0100| [431093d3b7a25e19f2358b9d86e92ee2d9e64e33] | committer: Jean-Baptiste Kempf

qt: main_interface: Create the videoWidget when needed

(cherry picked from commit 8da9abc69582c9792c9fb48e3cc05f74b50a3e72)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=431093d3b7a25e19f2358b9d86e92ee2d9e64e33
---

 modules/gui/qt/main_interface.cpp | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/modules/gui/qt/main_interface.cpp b/modules/gui/qt/main_interface.cpp
index 7ad3ffa015..9c9c9c3b97 100644
--- a/modules/gui/qt/main_interface.cpp
+++ b/modules/gui/qt/main_interface.cpp
@@ -746,6 +746,11 @@ void MainInterface::getVideoSlot( struct vout_window_t *p_wnd,
         toggleUpdateSystrayMenu();
 
     /* Request the videoWidget */
+    if ( !videoWidget )
+    {
+        videoWidget = new VideoWidget( p_intf, stackCentralW );
+        stackCentralW->addWidget( videoWidget );
+    }
     *res = videoWidget->request( p_wnd );
     if( *res ) /* The videoWidget is available */
     {



More information about the vlc-commits mailing list