diff --git a/ApplicationComponents/lqPlayerControlsToolbar.cxx b/ApplicationComponents/lqPlayerControlsToolbar.cxx
index 616891e730c07ac92d962c61ef8b703e92f6e2cc..afb40f36771cab229de554732ab2069429167a54 100644
--- a/ApplicationComponents/lqPlayerControlsToolbar.cxx
+++ b/ApplicationComponents/lqPlayerControlsToolbar.cxx
@@ -289,11 +289,13 @@ void lqPlayerControlsToolbar::onSetLiveMode(bool liveModeEnabled)
   this->onToggled(!liveModeEnabled);
   
   // WIP MOVE THIS TO CONTROLLER
+
+  // Sync button with state, It is paused when opening a new reader, and shall be in play mode when opening a stream 
   if(liveModeEnabled){
     // Make LiveSource are running
     pqLiveSourceBehavior::resume();
+    this->onPlaying(true);
   }else{
-    // Sync button with state, It is paused when opening a new reader
     this->onPlaying(false);
   }