diff --git a/modules/gui/qt/main_interface.cpp b/modules/gui/qt/main_interface.cpp
index 31ff3931539eb90e850b7f8af1ac9def9a706a42..7f135f93baf273c377d8b9035097cb3f2ef51094 100644
--- a/modules/gui/qt/main_interface.cpp
+++ b/modules/gui/qt/main_interface.cpp
@@ -282,6 +282,11 @@ void MainInterface::computeMinimumSize()
     setMinimumWidth( minWidth );
 }
 
+QList<QQmlError> MainInterface::qmlErrors() const
+{
+    return mediacenterView->errors();
+}
+
 /*****************************
  *   Main UI handling        *
  *****************************/
diff --git a/modules/gui/qt/main_interface.hpp b/modules/gui/qt/main_interface.hpp
index 9ee0af52d3ab604812e0a83b3818dece9bd9a9a3..3ceb91b40f18ba0946e6094944a14fb8dace0009 100644
--- a/modules/gui/qt/main_interface.hpp
+++ b/modules/gui/qt/main_interface.hpp
@@ -113,6 +113,7 @@ public:
     bool isInterfaceFullScreen() { return b_interfaceFullScreen; }
     bool isInterfaceAlwaysOnTop() { return b_interfaceOnTop; }
     bool hasEmbededVideo() { return m_hasEmbededVideo; }
+    QList<QQmlError> qmlErrors() const;
 
 protected:
     void dropEventPlay( QDropEvent* event, bool b_play );