diff --git a/Telegram/SourceFiles/media/view/media_view_overlay_widget.cpp b/Telegram/SourceFiles/media/view/media_view_overlay_widget.cpp index d4c868617..957679aba 100644 --- a/Telegram/SourceFiles/media/view/media_view_overlay_widget.cpp +++ b/Telegram/SourceFiles/media/view/media_view_overlay_widget.cpp @@ -2055,7 +2055,7 @@ void OverlayWidget::zoomOut() { } void OverlayWidget::zoomReset() { - if (_stories) { + if (_stories || _fullScreenVideo) { return; } auto newZoom = _zoom; @@ -5179,7 +5179,9 @@ void OverlayWidget::handleWheelEvent(not_null e) { } void OverlayWidget::setZoomLevel(int newZoom, bool force) { - if (_stories || (!force && _zoom == newZoom)) { + if (_stories + || (!force && _zoom == newZoom) + || (_fullScreenVideo && newZoom != kZoomToScreenLevel)) { return; }