Don't track caption in fullscreen video view.

Fixes .
This commit is contained in:
John Preston 2025-02-20 11:10:38 +04:00
parent c38982d286
commit f74ba95e95

View file

@ -1510,6 +1510,9 @@ void OverlayWidget::refreshCaptionGeometry() {
if (_caption.isEmpty() && (!_stories || !_stories->repost())) {
_captionRect = QRect();
return;
} else if (_fullScreenVideo) {
_captionRect = QRect();
return;
}
if (_groupThumbs && _groupThumbs->hiding()) {