]> git.sur5r.net Git - minitube/commitdiff
Hide "Fatal Error" messages 1.5
authorFlavio <flavio@odisseo.local>
Fri, 5 Aug 2011 19:14:10 +0000 (21:14 +0200)
committerFlavio <flavio@odisseo.local>
Fri, 5 Aug 2011 19:14:10 +0000 (21:14 +0200)
src/MainWindow.cpp

index 7021d3a0512eab7b7de2c23067d5dff7d9ea8895..6da09fd38688a85a843be8aef5e0b4228f254008 100644 (file)
@@ -661,7 +661,9 @@ void MainWindow::stateChanged(Phonon::State newState, Phonon::State /* oldState
 
     case Phonon::ErrorState:
         if (mediaObject->errorType() == Phonon::FatalError) {
-            statusBar()->showMessage(tr("Fatal error: %1").arg(mediaObject->errorString()));
+            // Do not display because we try to play incomplete video files and sometimes trigger this
+            // We retry automatically (in MediaView) so no need to show it
+            // statusBar()->showMessage(tr("Fatal error: %1").arg(mediaObject->errorString()));
         } else {
             statusBar()->showMessage(tr("Error: %1").arg(mediaObject->errorString()));
         }