diff --git a/modules/gui/qt/maininterface/videosurface.cpp b/modules/gui/qt/maininterface/videosurface.cpp
index 2707973b73298bc61b6f094ec314460f1ecef314..dae272fe50b44da09e5db74e9194c71ba7c5f897 100644
--- a/modules/gui/qt/maininterface/videosurface.cpp
+++ b/modules/gui/qt/maininterface/videosurface.cpp
@@ -150,11 +150,6 @@ void VideoSurface::setCtx(MainCtx* ctx)
     emit ctxChanged(ctx);
 }
 
-QSize VideoSurface::getSourceSize() const
-{
-    return m_sourceSize;
-}
-
 int VideoSurface::qtMouseButton2VLC( Qt::MouseButton qtButton )
 {
     switch( qtButton )
@@ -206,9 +201,7 @@ void VideoSurface::hoverMoveEvent(QHoverEvent* event)
     QPointF current_pos = event->posF();
     if (current_pos != m_oldHoverPos)
     {
-        float scaleW = m_sourceSize.width() / width();
-        float scaleH = m_sourceSize.height() / height();
-        emit mouseMoved(current_pos.x() * scaleW, current_pos.y() * scaleH);
+        emit mouseMoved(current_pos.x(), current_pos.y());
         m_oldHoverPos = current_pos;
     }
     event->accept();
diff --git a/modules/gui/qt/maininterface/videosurface.hpp b/modules/gui/qt/maininterface/videosurface.hpp
index 761c8c63027a757c59b3e72224f54131676f6061..c389e55635f0f401001540f87c17f7bdb096b101 100644
--- a/modules/gui/qt/maininterface/videosurface.hpp
+++ b/modules/gui/qt/maininterface/videosurface.hpp
@@ -66,7 +66,6 @@ class VideoSurface : public QQuickItem
 {
     Q_OBJECT
     Q_PROPERTY(MainCtx* ctx READ getCtx WRITE setCtx NOTIFY ctxChanged FINAL)
-    Q_PROPERTY(QSize sourceSize READ getSourceSize NOTIFY sourceSizeChanged FINAL)
     Q_PROPERTY(Qt::CursorShape cursorShape READ getCursorShape WRITE setCursorShape RESET unsetCursor FINAL)
 
 public:
@@ -75,8 +74,6 @@ public:
     MainCtx* getCtx();
     void setCtx(MainCtx* ctx);
 
-    QSize getSourceSize() const;
-
 protected:
     int qtMouseButton2VLC( Qt::MouseButton qtButton );
 
@@ -100,7 +97,6 @@ protected:
 
 signals:
     void ctxChanged(MainCtx*);
-    void sourceSizeChanged(QSize);
     void surfaceSizeChanged(QSizeF);
     void surfacePositionChanged(QPointF);
 
@@ -120,8 +116,6 @@ protected slots:
 private:
     MainCtx* m_ctx = nullptr;
 
-    bool m_sourceSizeChanged = false;
-    QSize m_sourceSize;
     QPointF m_oldHoverPos;
 
     VideoSurfaceProvider* m_provider = nullptr;